1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00

GH-243 Do not use XCTest

This commit is contained in:
Tae Won Ha 2016-08-18 17:28:27 +02:00
parent 0ac57a0ca1
commit 8f4df133f9
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 10 additions and 25 deletions

View File

@ -3,7 +3,6 @@
* See LICENSE
*/
import XCTest
import Quick
import Nimble
@testable import SwiftNeoVim

View File

@ -3,31 +3,17 @@
* See LICENSE
*/
import XCTest
import Quick
import Nimble
@testable import VimR
class VimRTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
class ShellSpec: QuickSpec {
override func spec() {
describe("Some class") {
it("does things") {
expect(true).to(be(true))
}
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measureBlock {
// Put the code you want to measure the time of here.
}
}
}
}