File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -600,6 +600,17 @@ def test_2_2(self):
600
600
expectResult = 20.0
601
601
isTrue = expectResult - result < 0.0001
602
602
self .assertTrue (isTrue ,"calA" )
603
+ self .client = Client ()
604
+ self .lenResponse = self .client .get ('/home/get?partname=BBa_B0010' )
605
+ self .lenResponse = self .client .get ('/home/getChainList?id=1' )
606
+ self .lenResponse = self .client .get ('/home/getProject?id=1' )
607
+ self .lenResponse = self .client .get ('/home/getUserProject' )
608
+
609
+ self .lenResponse = self .client .post ('/home/changeProjectname' , {'id' :1 , 'name' :'new' })
610
+ self .lenResponse = self .client .post ('/home/changeTrack' , {'id' :1 , 'track_id' :1 })
611
+ self .lenResponse = self .client .post ('/home/deleteProject' , {'id' :1 , })
612
+ self .lenResponse = self .client .get ('/home/getTrackFunctions?track_id=1' )
613
+ self .lenResponse = self .client .get ('/home/getResultImage?id=1' )
603
614
604
615
#test calA0 from simulation.py
605
616
def test_3_1 (self ):
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ def test_normal(self):
71
71
self .gr .get_graph ()
72
72
class testSystemView (TestCase ):
73
73
def setUp (self ):
74
- pass
74
+ self . client = Client ()
75
75
def test_normal (self ):
76
- pass
76
+ self .client .post ('/system/related' ,{'id' :'C00002' })
77
+ self .client .get ('/system/getGene' ,{'id' :'100008683' })
78
+ self .client .get ('/system/getCompound' ,{'id' :'C00002' })
You can’t perform that action at this time.
0 commit comments