# File test/src/simple_parser_test.rb, line 127
  def testNotString
    assertParser('abc', ?a, not_string('abcd'))
    assertError('abc', '"abc" unexpected', not_string('abc'))
    assertError('aabcd', '"abc" unexpected', not_string('abc')*2, 1)
  end