Skip to content

Commit

Permalink
Add the simplest possible test for teqp with AbstractModel
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhbell committed Feb 21, 2024
1 parent efe3259 commit 9210cb9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/tests/catch_test_vdWEOS1.cxx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <catch2/catch_test_macros.hpp>
#include <catch2/catch_approx.hpp>
using Catch::Approx;

#include "teqp/cpp/teqpcpp.hpp"

TEST_CASE("Simplest case","[vdW1]") {
auto model = teqp::cppinterface::make_model(R"( {"kind": "vdW1", "model": {"a": 1, "b": 2}} )"_json);
}

0 comments on commit 9210cb9

Please sign in to comment.