Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/server/UtilsGwtTests.java

Diff revisions: vs.
  @@ -1,20 +1,17 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.server;
3 3
4 - import junit.framework.*;
5 -
6 4 import org.litesoft.commonfoundation.typeutils.*;
7 5
8 - public class UtilsGwtTests extends TestCase
9 - {
10 - class InnerDummy
11 - {
6 + import junit.framework.*;
7 +
8 + public class UtilsGwtTests extends TestCase {
9 + class InnerDummy {
12 10
13 11 }
14 12
15 13 public void testJustClassName()
16 - throws Exception
17 - {
14 + throws Exception {
18 15 Assert.assertNull( Objects.justClassName( (String) null ) );
19 16 assertEquals( "", Objects.justClassName( "" ) );
20 17 assertEquals( "Bob", Objects.justClassName( "Bob" ) );