diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-24 13:55:19 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-03 13:26:11 +0900 |
| commit | fbc41d795b8251180e09d003171f346487e7ab25 (patch) | |
| tree | 6199fae0522a9d4c22a917de9b0b00d31ac4faa4 /src/tests/exportertest.h | |
| parent | 9a622918b2f64e81006356124a045ba99cc3765d (diff) | |
| download | krecipes-fbc41d79.tar.gz krecipes-fbc41d79.zip | |
Fix importers/exporters bugs. Fix tests and add them to build process.
The file `mx2test.txt` is taken from KRecipes 2.1 source code.
Other tests have been adjusted based on the tests in KRecipes 2.1 source code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
(cherry picked from commit dfbafdbb2f7369438a750327544f9084a765e407)
Diffstat (limited to 'src/tests/exportertest.h')
| -rw-r--r-- | src/tests/exportertest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/exportertest.h b/src/tests/exportertest.h index 739a57c..a812b8e 100644 --- a/src/tests/exportertest.h +++ b/src/tests/exportertest.h @@ -24,9 +24,9 @@ using std::cout; using std::cerr; using std::endl; -void check( BaseExporter &exporter, const RecipeList &recipeList ) +void check( const char *filename, BaseExporter &exporter, const RecipeList &recipeList ) { - TQFile file("test.txt"); + TQFile file(filename); if ( file.open( IO_WriteOnly ) ) { TQTextStream stream(&file); exporter.writeStream(stream,recipeList); |
