Guest User

Untitled

a guest
Nov 17th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. protected $username;
  2.  
  3. protected function setUp()
  4. {
  5. $this->username = "Bob";
  6. }
  7.  
  8. public function testUserCanLogInSuccessfully()
  9. {
  10. $password = "Right_Password";
  11. // code
  12. }
  13.  
  14. public function testUserCanNotLogInSuccessfully()
  15. {
  16. $password = "Wrong_Password";
  17. //code
  18. }
Add Comment
Please, Sign In to add comment