add infrastructure and first example for testing standalone LAMMPS input commands

This commit is contained in:
Axel Kohlmeyer
2020-06-16 12:52:35 -04:00
parent 7a00ec90e5
commit 73a7fb53ff
4 changed files with 138 additions and 2 deletions

View File

@ -0,0 +1,4 @@
add_executable(test_simple_commands test_simple_commands.cpp)
target_link_libraries(test_simple_commands PRIVATE lammps GTest::GMock GTest::GTest)
add_test(NAME TestSimpleCommands COMMAND test_simple_commands WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})