Native Mac OS X OtaClock replica
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OtaClockTests.m 863B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // OtaClockTests.m
  3. // OtaClockTests
  4. //
  5. // Created by Thomas Buck on 16.08.15.
  6. // Copyright (c) 2015 xythobuz. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import <XCTest/XCTest.h>
  10. @interface OtaClockTests : XCTestCase
  11. @end
  12. @implementation OtaClockTests
  13. - (void)setUp {
  14. [super setUp];
  15. // Put setup code here. This method is called before the invocation of each test method in the class.
  16. }
  17. - (void)tearDown {
  18. // Put teardown code here. This method is called after the invocation of each test method in the class.
  19. [super tearDown];
  20. }
  21. - (void)testExample {
  22. // This is an example of a functional test case.
  23. XCTAssert(YES, @"Pass");
  24. }
  25. - (void)testPerformanceExample {
  26. // This is an example of a performance test case.
  27. [self measureBlock:^{
  28. // Put the code you want to measure the time of here.
  29. }];
  30. }
  31. @end