os-ken/ryu/tests/unit/sample/test_sample1.py
FUJITA Tomonori 875ebcb901 Added test framework, ported from Quantum
* Added test result format for Jenkins
* Added some test code for ryu/ofproto/

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2012-05-07 21:29:47 +09:00

21 lines
382 B
Python

# 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('ryu.tests.test_sample1')
class TestSample1(unittest.TestCase):
def testS1Func1(self):
LOG.debug('testS1Func1 - START')
ok_(True)
def testS1Func2(self):
ok_(True)