Fix for gump-build failure.

To Rick: Could you please look at this (I'm not a big expert in j2ee)
This commit is contained in:
Oleg Sukhodolsky 2003-08-21 21:16:52 +00:00
parent 67da361a9a
commit 4aaa7623e5
1 changed files with 0 additions and 3 deletions

View File

@ -11,13 +11,10 @@ public class HomeInterfaceCheckTest extends BaseCheckTestCase
final DefaultConfiguration checkConfig =
createCheckConfig(RemoteHomeInterfaceCheck.class);
final String[] expected = {
"14:18: Home interface 'InputHomeInterface' must have method 'findByPrimaryKey()'.",
"20:19: Method 'createSomething' must be non-void.",
"20:19: Method 'createSomething' must throw 'java.rmi.RemoteException'.",
"20:19: Method 'createSomething' must throw 'javax.ejb.CreateException'.",
"22:19: Method 'findSomething' must be non-void.",
"22:19: Method 'findSomething' must throw 'java.rmi.RemoteException'.",
"22:19: Method 'findSomething' must throw 'javax.ejb.FinderException'.",
};
verify(checkConfig, getPath("j2ee/InputHomeInterface.java"), expected);
}