diff options
Diffstat (limited to 'tests/unit/sample/test_sample1.py')
-rw-r--r-- | tests/unit/sample/test_sample1.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/unit/sample/test_sample1.py b/tests/unit/sample/test_sample1.py new file mode 100644 index 00000000..b4963556 --- /dev/null +++ b/tests/unit/sample/test_sample1.py @@ -0,0 +1,20 @@ +# vim: tabstop=4 shiftwidth=4 softtabstop=4 + +import unittest +from nose.tools import ok_, eq_ +# from ryu.app.simple_switch import SimpleSwitch + +import logging + + +LOG = logging.getLogger('tests.test_sample1') + + +class TestSample1(unittest.TestCase): + + def testS1Func1(self): + LOG.debug('testS1Func1 - START') + ok_(True) + + def testS1Func2(self): + ok_(True) |