rewrite testsuite in python
This commit is contained in:
12
tests/testcases/mqtt_basic.py
Normal file
12
tests/testcases/mqtt_basic.py
Normal file
@ -0,0 +1,12 @@
|
||||
import unittest
|
||||
|
||||
class mqtt_basic(unittest.TestCase):
|
||||
def setUp(self):
|
||||
pass
|
||||
|
||||
|
||||
def test_one(self):
|
||||
self.assertEqual(3,3)
|
||||
|
||||
def test_two(self):
|
||||
self.assertEqual(4,4)
|
Reference in New Issue
Block a user