Last active
October 10, 2017 02:26
-
-
Save omayib/cb295a6669cdc98721269909262b8369 to your computer and use it in GitHub Desktop.
the initial unit test for registration page presenter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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