VLAdaptorBench / external /pyrep /tests /test_dummies.py
lsnu's picture
Add files using upload-large-folder tool
cf8614b verified
import unittest
from tests.core import TestCore
from pyrep.objects.dummy import Dummy
class TestDummies(TestCore):
def test_get_dummy(self):
Dummy('dummy')
def test_create_dummy(self):
d = Dummy.create(0.01)
self.assertIsInstance(d, Dummy)
if __name__ == '__main__':
unittest.main()