Skip to content

Commit

Permalink
add missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmrichard committed Apr 16, 2024
1 parent 48118d0 commit b7881de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/cxx/unit_tests/derivative/nuclear.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ using AOGradient = simde::AOEnergyNuclearGradientStdVectorD;
using AOHessian = simde::AOEnergyNuclearHessianStdVectorD;

TEST_CASE("Nuclear Derivative Property Types") {
test_property_type<Gradient>({"Chemical System", "Arg 1"}, {"Derivative"});
test_property_type<Hessian>({"Chemical System", "Arg 1", "Arg2"},
{"Derivative"});
test_property_type<AOGradient>({"AOs", "Chemical System", "Arg 1"},
{"Derivative"});

test_property_type<AOHessian>({"AOs", "Chemical System", "Arg 1", "Arg 2"},
{"Derivative"});

test_property_type<Gradient>({"Chemical System"}, {"Derivative"});
}

0 comments on commit b7881de

Please sign in to comment.