blob: f5aff844f8118644c446423d168c495b52b2d160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
|