You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import XCTest
classHelloWorldTest:XCTestCase{func testNoName(){letexpected="Hello, World!"XCTAssertEqual(HelloWorld.hello(), expected,"When given no name, we should greet the world!")}func testSampleName(){letexpected="Hello, Alice!"XCTAssertEqual(HelloWorld.hello("Alice"), expected,"When given 'Alice', we should greet Alice!")}func testOtherSampleName(){letexpected="Hello, Bob!"XCTAssertEqual(HelloWorld.hello("Bob"), expected,"When given 'Bob', we should greet Bob!")}func testNoStrangeName(){letexpected="Hello, !"XCTAssertEqual(HelloWorld.hello(""), expected,"When given an empty string, it is strange, but should have a space and punctuation")}}
The text was updated successfully, but these errors were encountered:
exercism/objective-c#27
Create Empty Xcode File
exercism/exercism#2401 (comment)
Update WorkFlow.md
Use this tutorial as a basis to update the WorkFlow.md file
http://samuelmullen.com/2014/09/unit-testing-in-swift/
Example Solution to HelloWorld
Hello World Test File
The text was updated successfully, but these errors were encountered: