blob: f4f77cfd92d3a0ffc94080058090b422df3f1850 [file] [log] [blame]
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -04001//
2// RingTests.swift
3// RingTests
4//
5// Created by Edric on 16-06-23.
6// Copyright © 2016 Savoir-faire Linux. All rights reserved.
7//
8
9import XCTest
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040010
11class RingTests: XCTestCase {
Romain Bertozzifac9f892016-11-10 11:00:44 -050012
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040013 override func setUp() {
14 super.setUp()
15 // Put setup code here. This method is called before the invocation of each test method in the class.
16 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050017
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040018 override func tearDown() {
19 // Put teardown code here. This method is called after the invocation of each test method in the class.
20 super.tearDown()
21 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050022
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040023 func testExample() {
24 // This is an example of a functional test case.
25 // Use XCTAssert and related functions to verify your tests produce the correct results.
26 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050027
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040028 func testPerformanceExample() {
29 // This is an example of a performance test case.
Romain Bertozzifac9f892016-11-10 11:00:44 -050030 self.measure {
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040031 // Put the code you want to measure the time of here.
32 }
33 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050034
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040035}