Assert.assertEquals(expect, actual);
}
@Test
public void test_6() {
final CompilerOptions prefs = new CompilerOptions();
prefs.setBooleanOption(CompilerOption.WARN_UNUSED_FUNCTION, false);
final String actual = prefs.export().toString();
final String expect = "[nowarn_export_all,nowarn_export_vars,nowarn_shadow_vars,nowarn_unused_function,warn_deprecated_function,nowarn_obsolete_guard,nowarn_unused_import,warn_unused_vars,warn_unused_record]";
Assert.assertEquals(expect, actual);
}