4767e5c935
* old tests attaches stdlib sources to testlib classpath * new test compiles stdlib into stdlib.jar and then adds stdlib.jar to testlib classpath
19 lines
357 B
Java
19 lines
357 B
Java
package org.jetbrains.jet.codegen;
|
|
|
|
import junit.framework.TestSuite;
|
|
|
|
/**
|
|
* @author Stepan Koltsov
|
|
*/
|
|
public class TestlibWithStdlibBinaryTest extends TestlibTestBase {
|
|
|
|
protected TestlibWithStdlibBinaryTest() {
|
|
super(true);
|
|
}
|
|
|
|
public static TestSuite suite() {
|
|
return new TestlibWithStdlibBinaryTest().buildSuite();
|
|
}
|
|
|
|
}
|