First version

This commit is contained in:
2022-04-11 17:17:23 +03:00
committed by GitHub
parent 45a79eed20
commit fde1669b60
29 changed files with 1434 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
//
// BoxAttackTests.m
// BoxAttackTests
//
// Created by RUSlan on 29.09.14.
// Copyright (c) 2014 RUSlan. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <XCTest/XCTest.h>
@interface BoxAttackTests : XCTestCase
@end
@implementation BoxAttackTests
- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testExample {
// This is an example of a functional test case.
XCTAssert(YES, @"Pass");
}
- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
}];
}
@end