Software Engineering “im WiSe18"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CredentialsTest.java 201B

12345678910111213141516171819
  1. import org.junit.Test;
  2. import static org.junit.Assert.*;
  3. public class CredentialsTest{
  4. @Test
  5. public void testOne(){
  6. Credentials c = new Credentials("", "");
  7. assertNotNull(c);
  8. }
  9. }