1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-21 12:41:44 +03:00
vimr/Workspace/Tests/WorkspaceTests/WorkspaceTests.swift

16 lines
384 B
Swift
Raw Normal View History

2020-08-21 09:59:40 +03:00
@testable import Workspace
2020-09-18 17:06:41 +03:00
import XCTest
2020-08-21 09:59:40 +03:00
final class WorkspaceTests: XCTestCase {
2020-09-18 17:06:41 +03:00
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(Workspace().text, "Hello, World!")
}
2020-08-21 09:59:40 +03:00
2020-09-18 17:06:41 +03:00
static var allTests = [
("testExample", testExample),
]
2020-08-21 09:59:40 +03:00
}