Add basic budget unit tests

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22253 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2012-07-01 18:45:51 +00:00
parent 91a6fb5be5
commit b6a07f0bfb
3 changed files with 2614 additions and 2 deletions

View File

@ -112,8 +112,9 @@ noinst_PROGRAMS = ${TEST_PROGS} ${CHECK_PROGS}
test_engine_SOURCES = \
test-engine.c \
utest-Invoice.c \
utest-Account.c
utest-Account.c \
utest-Budget.c \
utest-Invoice.c
test_engine_LDADD = \
libutest-Split.la \

View File

@ -26,6 +26,7 @@
#include "qof.h"
extern void test_suite_account();
extern void test_suite_budget();
extern void test_suite_gncInvoice();
//extern void test_suite_transaction();
extern void test_suite_split();
@ -41,6 +42,7 @@ main (int argc,
g_test_bug_base("https://bugzilla.gnome.org/show_bug.cgi?id="); /* init the bugzilla URL */
test_suite_account();
test_suite_budget();
test_suite_gncInvoice();
// test_suite_transaction();
test_suite_split();

File diff suppressed because it is too large Load Diff