Browse Source

Credentials Test

master
MRichter 1 year ago
parent
commit
fdb392d547
2 changed files with 9 additions and 1 deletions
  1. 6
    0
      src/Credentials.java
  2. 3
    1
      test/java/CredentialsTest.java

+ 6
- 0
src/Credentials.java 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;
}
}




+ 3
- 1
test/java/CredentialsTest.java 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() {
}
}

Loading…
Cancel
Save