allow tests in release mode
All checks were successful
Linux arm64 / Build (push) Successful in 6m40s

This commit is contained in:
2024-05-04 12:42:26 +02:00
parent 851080c7a4
commit f5a282c455
6 changed files with 80 additions and 38 deletions

View File

@@ -1,10 +1,10 @@
#include <cassert>
#include <filesystem>
#include <fstream>
#include <iostream>
#include "IO.h"
#include "Solver.h"
#include "test_assert.h"
namespace fs = std::filesystem;
@@ -39,8 +39,8 @@ void TestKernelImage() {
Solver solver;
assert(solver.Image(mat) == image);
assert(solver.Kernel(mat) == noyau);
test_assert(solver.Image(mat) == image);
test_assert(solver.Kernel(mat) == noyau);
}
}