/** Erlang refuses to parse 4e10, I think this is wrong and hence my parser accepts this. */
@Test
public void testParse6j()
{
final String text = " 4e10 ";
OtpErlangDouble number = (OtpErlangDouble)ErlangLabel.parseText(text);
Assert.assertEquals(4e10,number.doubleValue(),Configuration.fpAccuracy);
checkForCorrectException(new whatToRun() { public @Override void run() {
runner.evaluateString(text);
}},IllegalArgumentException.class,"badmatch");
}