Initial commit, code not working

This commit is contained in:
Adam Fowler
2021-03-11 13:59:28 +00:00
commit 98f5d19e91
6 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import XCTest
@testable import hummingbird_mustache
final class hummingbird_mustacheTests: 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(hummingbird_mustache().text, "Hello, World!")
}
static var allTests = [
("testExample", testExample),
]
}

7
Tests/LinuxMain.swift Normal file
View File

@@ -0,0 +1,7 @@
import XCTest
import hummingbird_mustacheTests
var tests = [XCTestCaseEntry]()
tests += hummingbird_mustacheTests.allTests()
XCTMain(tests)