refactor: replace Logger with RunLogger and streamline logging setup

This commit is contained in:
2026-03-01 11:01:04 -03:00
parent 53f75b44a5
commit c59f0d6516
23 changed files with 71 additions and 2636 deletions

View File

@@ -0,0 +1,19 @@
from diceplayer.environment 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)