Removed boilerplate code
This commit is contained in:
parent
7e99196924
commit
89719afcc2
|
@ -1,3 +1 @@
|
|||
struct S3Storage {
|
||||
var text = "Hello, World!"
|
||||
}
|
||||
|
||||
|
|
|
@ -2,14 +2,5 @@ import XCTest
|
|||
@testable import S3Storage
|
||||
|
||||
final class S3StorageTests: 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(S3Storage().text, "Hello, World!")
|
||||
}
|
||||
|
||||
static var allTests = [
|
||||
("testExample", testExample),
|
||||
]
|
||||
static var allTests: [(String, (S3StorageTests) -> ()throws -> ())] = []
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue