}
@Test
public void testToTerm_2() {
final BooleanOption option = CompilerOption.WARN_EXPORT_ALL;
final OtpErlangObject actual = option.toTerm(false);
final String expected = "nowarn_export_all";
Assert.assertEquals(expected, actual.toString());
}
@Test