9 lines
154 B
Python
9 lines
154 B
Python
"""ProtoTorch datasets test suite."""
|
|
|
|
import unittest
|
|
|
|
|
|
class TestDummy(unittest.TestCase):
|
|
def test_one(self):
|
|
self.assertEqual(True, True)
|