예제 #1
0
 def test_smoke(self):
     device = APRSISRXDevice(reactor=self.clock,
                             aprs_filter='r/0/0/100',
                             client=_StubAPRSClient())
     state_smoke_test(device)
     device.close()
     state_smoke_test(device)
예제 #2
0
 def test_state_smoke_full(self):
     state_smoke_test(Device(
         name=u'x',
         rx_driver=StubRXDriver(),
         tx_driver=StubTXDriver(),
         vfo_cell=_ConstantVFOCell(1),
         components={'c': StubComponent()}))
예제 #3
0
 def test_state_smoke_full(self):
     state_smoke_test(
         Device(name=u'x',
                rx_driver=StubRXDriver(),
                tx_driver=StubTXDriver(),
                vfo_cell=_ConstantVFOCell(1),
                components={'c': StubComponent()}))
예제 #4
0
 def test_smoke(self):
     device = APRSISRXDevice(
         reactor=the_reactor,
         aprs_filter='r/0/0/100',
         client=_StubAPRSClient())
     state_smoke_test(device)
     device.close()
     state_smoke_test(device)
예제 #5
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': simulate.SimulatedDevice()}))
예제 #6
0
 def test_state_smoke(self):
     state_smoke_test(self.device)
예제 #7
0
 def test_state_smoke_empty(self):
     state_smoke_test(Device())
예제 #8
0
 def test_state_smoke(self):
     state_smoke_test(self.__rig)
     yield self.__rig.sync()
     state_smoke_test(self.__rig)
예제 #9
0
 def test_state_smoke(self):
     state_smoke_test(self.proxy)
예제 #10
0
 def test_state_smoke(self):
     state_smoke_test(Session(
         receive_flowgraph=Top(devices={'s1': SimulatedDevice()}),
         features={}))
예제 #11
0
 def test_smoke_nofilter(self):
     device = APRSISRXDevice(reactor=self.clock, client=_StubAPRSClient())
     state_smoke_test(device)
예제 #12
0
 def test_state_smoke(self):
     state_smoke_test(self.proxy)
예제 #13
0
 def test_smoke_nofilter(self):
     device = APRSISRXDevice(
         reactor=the_reactor,
         client=_StubAPRSClient())
     state_smoke_test(device)
예제 #14
0
 def test_smoke(self):
     state_smoke_test(self.receiver)
예제 #15
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': SimulatedDeviceForTest()}))
예제 #16
0
 def test_state_smoke(self):
     state_smoke_test(self.device)
예제 #17
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': SimulatedDeviceForTest()}))
예제 #18
0
 def test_state_smoke_empty(self):
     state_smoke_test(Device())
예제 #19
0
 def test_state_smoke(self):
     state_smoke_test(Top(devices={'s1': simulate.SimulatedDevice()}))
예제 #20
0
 def test_state_smoke(self):
     state_smoke_test(self.session)
예제 #21
0
 def test_smoke(self):
     state_smoke_test(self.receiver)
예제 #22
0
 def test_state_smoke(self):
     state_smoke_test(self.session)
예제 #23
0
 def test_state_smoke(self):
     state_smoke_test(self.__rig)
     yield self.__rig.sync()
     state_smoke_test(self.__rig)
예제 #24
0
 def test_state_smoke(self):
     state_smoke_test(
         Session(receive_flowgraph=Top(devices={'s1': SimulatedDevice()}),
                 features={}))