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:
parent
0ac57a0ca1
commit
8f4df133f9
@ -3,7 +3,6 @@
|
||||
* See LICENSE
|
||||
*/
|
||||
|
||||
import XCTest
|
||||
import Quick
|
||||
import Nimble
|
||||
@testable import SwiftNeoVim
|
||||
|
@ -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.
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user