// These cups are slightly different from the cups in ApiContainerTest
private static final boolean DEBUG = false;
private static StaticJavaResource[] getScuArray() {
return new StaticJavaResource[] {
new StaticJavaResource("test.apicontainer.ApiClass", getSourceForApiClass()),
new StaticJavaResource("test.apicontainer.NonApiClass", getSourceForNonApiClass()),
new StaticJavaResource("test.nonapipackage.TestClass", getSourceForTestClass()),
new StaticJavaResource("java.lang.Object", getSourceForObject()),
new StaticJavaResource("java.lang.Throwable", getSourceForThrowable()),
new StaticJavaResource("test.apicontainer.OneMoreApiClass", getSourceForOneMoreApiClass()),
new StaticJavaResource("java.lang.RuntimeException", getSourceForRuntimeException()),};
}