mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-15 10:28:23 +01:00
Refactor testDiffusion.cpp and Diffusion.hpp to improve code readability and maintainability. Remove unnecessary exception throwing and replace with assert statements for invalid arguments.
7 lines
179 B
C++
7 lines
179 B
C++
#include <gtest/gtest.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
GTEST_FLAG_SET(death_test_style, "threadsafe");
|
|
return RUN_ALL_TESTS();
|
|
} |