mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-26 02:11:24 +00:00
15 lines
255 B
Python
15 lines
255 B
Python
![]() |
import unittest
|
||
|
import flaml
|
||
|
|
||
|
|
||
|
class TestVersion(unittest.TestCase):
|
||
|
|
||
|
|
||
|
def test_version(self):
|
||
|
self.assertTrue(hasattr(flaml, '__version__'))
|
||
|
self.assertTrue(len(flaml.__version__) > 0)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
unittest.main()
|