use of org.erlide.core.builder.CompilerOptions in project erlide_eclipse by erlang.
the class CompilerOptionsTest method test_1.
@Test
public void test_1() {
final CompilerOptions prefs = new CompilerOptions();
prefs.setBooleanOption(CompilerOptions.DEBUG_INFO, true);
final String actual = prefs.export().toString();
final String expect = "[debug_info," + CompilerOptionsTest.DEF_VALUES + "]";
Assert.assertEquals(expect, actual);
}
Aggregations