2.0 first commit
This commit is contained in:
20
test/util.py
Normal file
20
test/util.py
Normal file
@ -0,0 +1,20 @@
|
||||
import unittest
|
||||
import pandas as pd
|
||||
|
||||
from lightweight_charts import Chart
|
||||
|
||||
|
||||
BARS = pd.read_csv('../examples/1_setting_data/ohlcv.csv')
|
||||
|
||||
|
||||
|
||||
class Tester(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.chart: Chart = Chart();
|
||||
|
||||
def tearDown(self) -> None:
|
||||
self.chart.exit()
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user