Implements More Tests and Begins Dice Refactor Implementation

This commit is contained in:
2023-04-22 11:27:20 -03:00
parent 71744641ff
commit b869ee74fb
19 changed files with 719 additions and 297 deletions

View File

@@ -0,0 +1,19 @@
from diceplayer.shared.environment.atom import Atom
import unittest
class TestAtom(unittest.TestCase):
def test_class_instantiation(self):
atom = Atom(
lbl=1,
na=1,
rx=1.0,
ry=1.0,
rz=1.0,
chg=1.0,
eps=1.0,
sig=1.0,
)
self.assertIsInstance(atom, Atom)