Removed boilerplate code

This commit is contained in:
Caleb Kleveter 2018-12-13 15:02:17 -06:00
parent 7e99196924
commit 89719afcc2
No known key found for this signature in database
GPG Key ID: B38DBD5CF2C98D69
2 changed files with 2 additions and 13 deletions

View File

@ -1,3 +1 @@
struct S3Storage {
var text = "Hello, World!"
}

View File

@ -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 -> ())] = []
}