mirror of
https://github.com/Doctorado-ML/mufs.git
synced 2025-08-15 23:55:56 +00:00
17 lines
309 B
Python
17 lines
309 B
Python
import unittest
|
|
|
|
from ..Selection import CFS
|
|
|
|
|
|
class CFS_test(unittest.TestCase):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
# @classmethod
|
|
# def setup(cls):
|
|
# pass
|
|
|
|
def test_initial(self):
|
|
cfs = CFS(a=1)
|
|
self.assertEqual(cfs.a, 1)
|