This commit is contained in:
CakeCN
2024-12-03 16:21:19 +08:00
commit 4198ca63b1
975 changed files with 333413 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
""" Example for a unit test."""
import unittest
class ExampleTest(unittest.TestCase):
"""
ExampleTest for a unit test.
"""
def setUp(self) -> None:
"""Init for ExampleTest."""
self.num_a = 1
self.num_b = 0
def test_dummy(self) -> None:
"""Dummy test."""
self.assertGreater(self.num_a, self.num_b)
if __name__ == "__main__":
unittest.main()