import cleanup

This commit is contained in:
Dave
2015-07-03 23:43:06 +02:00
parent 9dac03891c
commit 1c1a6012bf
12 changed files with 60 additions and 56 deletions

View File

@@ -17,7 +17,6 @@ import nodash.exceptions.NoSessionNotAwaitingConfirmationException;
import nodash.exceptions.NoSessionNotChangedException;
import nodash.exceptions.NoUserAlreadyOnlineException;
import nodash.exceptions.NoUserNotValidException;
import nodash.models.NoSession;
import nodash.models.NoUser;
import org.junit.Test;
@@ -123,19 +122,16 @@ public class NoCoreTest {
@Test
public void testGetUser() {
NoCore core = new NoCore(new NoDefaultAdapter());
fail("Not yet implemented");
}
@Test
public void testGetSessionState() {
NoCore core = new NoCore(new NoDefaultAdapter());
fail("Not yet implemented");
}
@Test
public void testShred() {
NoCore core = new NoCore(new NoDefaultAdapter());
fail("Not yet implemented");
}

View File

@@ -1,12 +1,10 @@
package nodash.test;
import static org.junit.Assert.*;
import nodash.core.NoCore;
import nodash.exceptions.NoSessionConfirmedException;
import nodash.exceptions.NoSessionExpiredException;
import nodash.models.NoSession;
import org.junit.Before;
import org.junit.Test;
public class NoSessionTest {

View File

@@ -8,11 +8,9 @@ import java.util.Arrays;
import javax.crypto.BadPaddingException;
import javax.crypto.IllegalBlockSizeException;
import nodash.core.NoCore;
import nodash.models.NoUser;
import org.apache.commons.codec.binary.Base64;
import org.junit.Before;
import org.junit.Test;
public class NoUserTest {

View File

@@ -13,12 +13,9 @@ import java.util.Arrays;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import nodash.core.NoCore;
import nodash.core.NoUtil;
import org.junit.Before;
import org.junit.Test;
public class NoUtilTest {