Assert.assertEquals(WarningOption.class, option.getClass());
}
@Test
public void testToTerm_1() {
final BooleanOption option = CompilerOption.WARN_EXPORT_ALL;
final OtpErlangObject actual = option.toTerm(true);
final String expected = "warn_export_all";
Assert.assertEquals(expected, actual.toString());
}