mirror of
https://github.com/knolleary/pubsubclient.git
synced 2026-07-27 19:56:34 +00:00
13 lines
189 B
Python
13 lines
189 B
Python
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)
|