diff options
Diffstat (limited to 'src/tests/importertest.h')
-rw-r--r-- | src/tests/importertest.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/tests/importertest.h b/src/tests/importertest.h new file mode 100644 index 0000000..f5aff84 --- /dev/null +++ b/src/tests/importertest.h @@ -0,0 +1,45 @@ +/*************************************************************************** +* Copyright (C) 2005 by * +* Jason Kivlighn ([email protected]) * +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +***************************************************************************/ + +#ifndef IMPORTERTEST_H +#define IMPORTERTEST_H + +#include <cmath> +#include <iostream> + +#include <tqstring.h> + +#include "checks.h" +#include "datablocks/categorytree.h" + +using std::cout; +using std::endl; + +void check( const BaseImporter &importer, const Recipe &recipe ) +{ + int recipe_num = 1; + RecipeList recipeList = importer.recipeList(); + for ( RecipeList::const_iterator it = recipeList.begin(); it != recipeList.end(); ++it ) { + printf("Recipe %d... ",recipe_num); + check( *it, recipe ); + printf("successful\n"); + ++recipe_num; + } + + check( "recipe count", recipe_num-1, 2 ); +} + +void check( const BaseImporter &importer, const CategoryTree *baseCatStructure ) +{ + printf("Checking category structure.\n"); + check( importer.categoryStructure(), baseCatStructure ); +} + +#endif |