1import sys 2import unittest 3 4import pricetag_pb2 5 6 7class TestCase(unittest.TestCase): 8 def test_pricetag(self): 9 got = pricetag_pb2.PriceTag( 10 name="dollar", 11 cost=5.00, 12 ) 13 self.assertIsNotNone(got) 14 15 16if __name__ == "__main__": 17 unittest.main() 18