add multitype data type and unittest (including tests for ubuf)

This commit is contained in:
Axel Kohlmeyer
2023-06-06 20:38:15 -04:00
parent 9cc6839a8b
commit 14acb3e0ca
3 changed files with 168 additions and 2 deletions

View File

@ -7,6 +7,10 @@ add_executable(test_mempool test_mempool.cpp)
target_link_libraries(test_mempool PRIVATE lammps GTest::GMockMain)
add_test(NAME MemPool COMMAND test_mempool)
add_executable(test_lmptype test_lmptype.cpp)
target_link_libraries(test_lmptype PRIVATE lammps GTest::GMockMain)
add_test(NAME LmpType COMMAND test_lmptype)
add_executable(test_argutils test_argutils.cpp)
target_link_libraries(test_argutils PRIVATE lammps GTest::GMockMain)
add_test(NAME ArgUtils COMMAND test_argutils)