上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 96 下一页
摘要: 平台分析 页面模板 adminlte bootstrap jquery django 表 接口表 接口title 描述 接口数量 通过数量 class API(models.Model): """接口表""" api_title = models.CharField(max_length=32, v 阅读全文
posted @ 2020-01-30 13:27 干it的小张 阅读(129) 评论(0) 推荐(0) 编辑
摘要: """A TestRunner for use with the Python unit testing framework. Itgenerates a HTML report to show the result at a glance.The simplest way to use this 阅读全文
posted @ 2020-01-30 11:45 干it的小张 阅读(221) 评论(0) 推荐(0) 编辑
摘要: import unittestfrom HTMLTestRunner import HTMLTestRunnerclass MyTestCase(unittest.TestCase): def xxxTest(self): self.assertTrue(2)if __name__ == '__ma 阅读全文
posted @ 2020-01-30 11:29 干it的小张 阅读(143) 评论(0) 推荐(0) 编辑
摘要: import unittestclass TestCase01(unittest.TestCase): @unittest.skip(reason="跳过") def test_case_01(self): self.assertTrue(1) @unittest.skipIf(condition= 阅读全文
posted @ 2020-01-29 20:59 干it的小张 阅读(102) 评论(0) 推荐(0) 编辑
摘要: import unittestclass TestCase1(unittest.TestCase): def test_case_01(self): self.assertTrue(1) def test_case_02(self): self.assertTrue(0)if __name__ == 阅读全文
posted @ 2020-01-29 18:17 干it的小张 阅读(192) 评论(0) 推荐(0) 编辑
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 96 下一页