15 lines
203 B
Python
15 lines
203 B
Python
"""prototorch.models test suite."""
|
|
|
|
import unittest
|
|
|
|
|
|
class TestDummy(unittest.TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_dummy(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|