DcCoreTests.swift 801 B

1234567891011121314151617181920212223242526
  1. import XCTest
  2. @testable import DcCore
  3. class DcCoreTests: XCTestCase {
  4. override func setUpWithError() throws {
  5. // Put setup code here. This method is called before the invocation of each test method in the class.
  6. }
  7. override func tearDownWithError() throws {
  8. // Put teardown code here. This method is called after the invocation of each test method in the class.
  9. }
  10. func testExample() throws {
  11. // This is an example of a functional test case.
  12. // Use XCTAssert and related functions to verify your tests produce the correct results.
  13. }
  14. func testPerformanceExample() throws {
  15. // This is an example of a performance test case.
  16. self.measure {
  17. // Put the code you want to measure the time of here.
  18. }
  19. }
  20. }