Skip to content

Instantly share code, notes, and snippets.

@omayib
Last active October 10, 2017 02:26
Show Gist options
  • Save omayib/cb295a6669cdc98721269909262b8369 to your computer and use it in GitHub Desktop.
Save omayib/cb295a6669cdc98721269909262b8369 to your computer and use it in GitHub Desktop.
the initial unit test for registration page presenter
class TheRegistrationPageTests: XCTestCase {
override func setUp() {
super.setUp()
}
override func tearDown() {
super.tearDown()
}
func testRegisterWithEmptyEmail(){
XCTFail()
}
func testRegistrationWithEmptyPassword(){
XCTFail()
}
func testRegistrationWithPasswordLessthan8Char(){
XCTFail()
}
func testRegistrationWithEmptyFullName(){
XCTFail()
}
func testRegistrationWithEmptyPhoneNumber(){
XCTFail()
}
func testRegisterWithAllFilled(){
XCTFail()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment