def go_simple(self, line, outcome, args):
     self.maker = NastranMaker([line])
     for arg in args:
         self.maker.set(*arg)
     self.maker._output(10001)
     if self.maker.text[0] != outcome:
         print "expected", outcome, len(outcome)
         print "resulted", self.maker.text[0], len(self.maker.text[0])
     self.assertTrue(self.maker.text[0] == outcome)
 def go(self, text):
     self.maker = NastranMaker(text)