⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_uuid.py

📁 xen虚拟机源代码安装包
💻 PY
字号:
import unittestfrom xen.xend import uuidclass test_uuid(unittest.TestCase):    def testStringRoundtrip(self):        def t(inp):            self.assertEqual(uuid.fromString(uuid.toString(inp)), inp)        t(uuid.create())        t(uuid.create())        t(uuid.create())        t(uuid.create())        t(uuid.create())    def testToFromString(self):        def t(inp, expected):            self.assertEqual(uuid.toString(inp), expected)            self.assertEqual(uuid.fromString(expected), inp)        t([0 for _ in range(0, 16)], "00000000-0000-0000-0000-000000000000")        t([185, 158, 125, 206, 250, 178, 125, 57, 2, 6, 162, 74, 178, 236,           196, 5], "b99e7dce-fab2-7d39-0206-a24ab2ecc405")def test_suite():    return unittest.makeSuite(test_uuid)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -