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
2020-09-18 16:06:41 +02:00

16 lines
384 B
Swift

@testable import Workspace
import XCTest
final class WorkspaceTests: XCTestCase {
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!")
}
static var allTests = [
("testExample", testExample),
]
}