neuropercolation/test/test_cell.py

14 lines
195 B
Python
Raw Normal View History

import sys
sys.path.append('../src')
import cellular_automaton.ca_cell as cac
import unittest
class TestCellState(unittest.TestCase):
pass
if __name__ == '__main__':
unittest.main()