mirror of
https://github.com/Doctorado-ML/STree.git
synced 2025-08-16 07:56:06 +00:00
Working tree with samples and first test
This commit is contained in:
14
tests/Stree_test.py
Normal file
14
tests/Stree_test.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import unittest
|
||||
|
||||
from trees.Stree import Stree
|
||||
|
||||
class Stree_test(unittest.TestCase):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.random_state = 17
|
||||
self._model = Stree(random_state=self.random_state)
|
||||
super(Stree_test, self).__init__(*args, **kwargs)
|
||||
|
||||
def test_split_data(self):
|
||||
self.assertTrue(True)
|
||||
|
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
Reference in New Issue
Block a user