Merge pull request #63 from tboudreaux/fix/test

Fixed eos, resourceManager, and approx8 Tests
This commit is contained in:
2025-06-12 11:24:40 -04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -30,14 +30,14 @@ TEST_F(approx8Test, setStiff) {
TEST_F(approx8Test, evaluate) {
serif::network::approx8::Approx8Network network;
serif::network::NetIn netIn;
std::vector<double> comp = {0.708, 2.94e-5, 0.276, 0.003, 0.0011, 9.62e-3, 1.62e-3, 5.16e-4};
netIn.composition = comp;
netIn.temperature = 1e7;
netIn.density = 1e2;
netIn.energy = 0.0;
netIn.tmax = 3.15e17;
netIn.dt0 = 1e12;

View File

@@ -11,7 +11,7 @@ foreach test_file : test_sources
test_exe = executable(
exe_name,
test_file,
dependencies: [gtest_dep, network_dep, gtest_main],
dependencies: [gtest_dep, gtest_main, network_dep],
include_directories: include_directories('../../src/network/public'),
link_with: libnetwork, # Link the dobj library
install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly