def test_sorted(self):
     a = pyrtl.Input(name='a')
     b = pyrtl.Input(name='b')
     self.assertEquals(simulators._get_inputs(None, self.block), [a, b])
 def test_specified(self):
     a = pyrtl.Input()
     b = pyrtl.Input()
     self.assertEquals(simulators._get_inputs([a], self.block), [a])
 def test_autogen(self):
     a = pyrtl.Input()
     self.assertEquals(simulators._get_inputs(None, self.block), [a])
Exemple #4
0
 def test_sorted(self):
     a = pyrtl.Input(name='a')
     b = pyrtl.Input(name='b')
     self.assertEquals(simulators._get_inputs(None, self.block), [a, b])
Exemple #5
0
 def test_specified(self):
     a = pyrtl.Input()
     b = pyrtl.Input()
     self.assertEquals(simulators._get_inputs([a], self.block), [a])
Exemple #6
0
 def test_autogen(self):
     a = pyrtl.Input()
     self.assertEquals(simulators._get_inputs(None, self.block), [a])