refactor: add bare unit test cases

mainly for LLMs to catch up with the convention
This commit is contained in:
David
2024-10-06 11:56:22 +02:00
parent bda415a83d
commit 2adb417408
85 changed files with 850 additions and 85 deletions

View File

@@ -2,7 +2,16 @@
# See license.txt
# import frappe
from frappe.tests import IntegrationTestCase
from frappe.tests import IntegrationTestCase, UnitTestCase
class UnitTestIncoterm(UnitTestCase):
"""
Unit tests for Incoterm.
Use this class for testing individual functions and methods.
"""
pass
class TestIncoterm(IntegrationTestCase):

View File

@@ -3,7 +3,16 @@
import frappe
from frappe.tests import IntegrationTestCase
from frappe.tests import IntegrationTestCase, UnitTestCase
class UnitTestTransactionDeletionRecord(UnitTestCase):
"""
Unit tests for TransactionDeletionRecord.
Use this class for testing individual functions and methods.
"""
pass
class TestTransactionDeletionRecord(IntegrationTestCase):