2 changed files with 20 additions and 12 deletions
@ -0,0 +1,16 @@ |
|||||||
|
import unittest |
||||||
|
|
||||||
|
from lib import constants |
||||||
|
|
||||||
|
|
||||||
|
class TestCaseForTestnet(unittest.TestCase): |
||||||
|
|
||||||
|
@classmethod |
||||||
|
def setUpClass(cls): |
||||||
|
super().setUpClass() |
||||||
|
constants.set_testnet() |
||||||
|
|
||||||
|
@classmethod |
||||||
|
def tearDownClass(cls): |
||||||
|
super().tearDownClass() |
||||||
|
constants.set_mainnet() |
||||||
Loading…
Reference in new issue