Răsfoiți Sursa

Update to be compatible to changes made to User's no-arg constructor.

Ben Alex 21 ani în urmă
părinte
comite
f203979237

+ 7 - 3
core/src/test/java/org/acegisecurity/providers/dao/UserTests.java

@@ -48,9 +48,13 @@ public class UserTests extends TestCase {
         junit.textui.TestRunner.run(UserTests.class);
     }
 
-    public void testNoArgsConstructor() throws Exception {
-        User user = new User();
-        assertTrue(true);
+    public void testNoArgConstructor() {
+        try {
+            new User();
+            fail("Should have thrown IllegalArgumentException");
+        } catch (IllegalArgumentException expected) {
+            assertTrue(true);
+        }
     }
 
     public void testNullValuesRejected() throws Exception {