8 lines
130 B
Python
8 lines
130 B
Python
from unittest import TestCase
|
|
|
|
|
|
class TestPhysicsFactory(TestCase):
|
|
def test_us_new_york_city(self):
|
|
self.assertTrue(True)
|
|
|