mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-04 19:41:00 +08:00
15 lines
265 B
Python
15 lines
265 B
Python
import unittest
|
|
|
|
from qlib.finco.task import SummarizeTask
|
|
|
|
|
|
class TestSummarize(unittest.TestCase):
|
|
def test_parse2txt(self):
|
|
task = SummarizeTask()
|
|
resp = task.parse2txt('')
|
|
print(resp)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|