# File test/src/operator_test.rb, line 13
  def testAll
    verifyToken('++ -', '++')
    verifyParser('++ + -- ++ - +', '-', 
      (Ops['++']|Ops['--']|Ops['+']).many_ >> Ops['-'])
  end