kopia lustrzana https://github.com/glidernet/ogn-python
15 wiersze
290 B
Python
15 wiersze
290 B
Python
![]() |
import unittest
|
||
|
|
||
|
from ogn.model import AircraftBeacon, Airport, ReceiverBeacon
|
||
|
|
||
|
|
||
|
class TestStringMethods(unittest.TestCase):
|
||
|
def test_string(self):
|
||
|
print(AircraftBeacon())
|
||
|
print(Airport())
|
||
|
print(ReceiverBeacon())
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|