fix: boilerplate test case (#28514)

This commit is contained in:
David Arnold 2024-11-19 12:29:34 +01:00 committed by GitHub
parent d9a1bd5d3d
commit 4f6e2fbe93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@ EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
class Test{classname}(UnitTestCase):
class UnitTest{classname}(UnitTestCase):
"""
Unit tests for {classname}.
Use this class for testing individual functions and methods.
@ -21,7 +21,7 @@ class Test{classname}(UnitTestCase):
pass
class Test{classname}(IntegrationTestCase):
class IntegrationTest{classname}(IntegrationTestCase):
"""
Integration tests for {classname}.
Use this class for testing interactions between multiple components.