Credentials Test

This commit is contained in:
MRichter 2022-11-10 15:51:18 +01:00
parent ebe8dd0b6e
commit fdb392d547
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,7 @@
import org.junit.jupiter.api.Test;
public class Credentials {
private String login;
private String hash;
@ -15,3 +18,6 @@ public class Credentials {
return false;
}
}

View File

@ -1,8 +1,10 @@
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class CredentialsTest {
@org.junit.jupiter.api.Test
@Test
void valid() {
}
}