Ejemplo n.º 1
0
 def test_lp_invgen_with_params(self):
     lp = LinchpinAPI()
     of = im.get_mock_outputfile()
     lf = im.get_mock_layoutfile()
     io = os.getcwd() + "/testoutput.txt"
     lp.lp_invgen(of, lf, io, "generic")
     filegenerated = os.path.exists(io)
     if filegenerated:
         os.remove(io)
     assert_equal(filegenerated, True)
Ejemplo n.º 2
0
 def test_lp_invgen_with_params(self):
     lp = LinchpinAPI()
     of = im.get_mock_outputfile()
     lf = im.get_mock_layoutfile()
     io = os.getcwd()+"/testoutput.txt"
     lp.lp_invgen(of, lf, io, "generic")
     filegenerated = os.path.exists(io)
     if filegenerated:
         os.remove(io)
     assert_equal(filegenerated, True)
Ejemplo n.º 3
0
 def test_lp_invgen_without_params(self):
     lp = LinchpinAPI()
     lp = lp.lp_invgen()
Ejemplo n.º 4
0
 def test_lp_invgen_without_params(self):
     lp = LinchpinAPI()
     lp = lp.lp_invgen()