mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
878 B
33 lines
878 B
#!@PYTHON@
|
|
|
|
import unittest
|
|
import os
|
|
|
|
os.environ["GNC_UNINSTALLED"] = "1"
|
|
|
|
from test_function_class import TestFunctionClass
|
|
from test_gettext import TestGettext
|
|
from test_session import TestSession
|
|
from test_book import TestBook
|
|
from test_account import TestAccount
|
|
from test_split import TestSplit
|
|
from test_transaction import TestTransaction
|
|
from test_business import TestBusiness
|
|
from test_commodity import TestCommodity, TestCommodityNamespace
|
|
from test_numeric import TestGncNumeric
|
|
from test_query import TestQuery
|
|
from test_price_and_wrapping import (
|
|
TestGncPriceWrapping,
|
|
TestGncLotSplitList,
|
|
TestSplitGncNumericReturns,
|
|
TestAccountCurrencyOrParent,
|
|
TestCommodityObtainTwin,
|
|
TestCommodityNamespaceDS,
|
|
TestSwigTypemapCompat,
|
|
TestGetPriceReturnsGncNumeric,
|
|
TestDoubleWrapProtection,
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|