Source code for testbot.demo_test

#!/usr/bin/env python
# -*- coding: utf-8 -*-


[docs]__author__ = "Nuanguang Gu(Sunny)"
[docs]__email__ = "nuanguang.gu@aliyun.com"
# coding: utf-8 import unittest from testbot import demo
[docs]class SillyTest(unittest.TestCase): """SillyTest tests fun_to_test """
[docs] def test_Func1(self): """Tests whether `Func1` is working properly """ self.assertEqual(demo.Func1(1, 2), False)