blob: 50df5e820c742952b2bb2959ee8ef38239cfe42e [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
10@testable import Ring
11
12class RingTests: XCTestCase {
Romain Bertozzifac9f892016-11-10 11:00:44 -050013
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040014 override func setUp() {
15 super.setUp()
16 // Put setup code here. This method is called before the invocation of each test method in the class.
17 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050018
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040019 override func tearDown() {
20 // Put teardown code here. This method is called after the invocation of each test method in the class.
21 super.tearDown()
22 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050023
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040024 func testExample() {
25 // This is an example of a functional test case.
26 // Use XCTAssert and related functions to verify your tests produce the correct results.
27 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050028
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040029 func testPerformanceExample() {
30 // This is an example of a performance test case.
Romain Bertozzifac9f892016-11-10 11:00:44 -050031 self.measure {
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040032 // Put the code you want to measure the time of here.
33 }
34 }
Romain Bertozzifac9f892016-11-10 11:00:44 -050035
Guillaume Roguezd0a1faf2016-06-29 15:55:37 -040036}