iuliaa

Untitled

Jun 21st, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package org.bsa.exceptions;
  2.  
  3. import org.bsa.service.UserService;
  4. import org.junit.Test;
  5.  
  6. import static org.junit.Assert.*;
  7.  
  8. public class LoginFailTest {
  9. @Test(expected = LoginFail.class)
  10. public void testLoginFail() throws Exception{
  11. UserService.checkLoginCredentials("A","test","Customer");
  12. }
  13. }
Add Comment
Please, Sign In to add comment