Merge branch 'develop' into collected-small-changes

This commit is contained in:
Axel Kohlmeyer
2023-08-09 00:43:29 -04:00
51 changed files with 806 additions and 304 deletions

View File

@ -1,3 +1,4 @@
# -*- CMake -*- file for tests of file reading or writing classes and functions in LAMMPS
add_executable(test_atom_styles test_atom_styles.cpp)
target_link_libraries(test_atom_styles PRIVATE lammps GTest::GMock)

View File

@ -612,6 +612,10 @@ TEST_F(FileOperationsTest, read_data_fix)
EXPECT_EQ(lmp->atom->tag[GETIDX(8)], 8);
EXPECT_EQ(lmp->atom->tag[GETIDX(9)], 9);
EXPECT_EQ(lmp->atom->tag[GETIDX(10)], 10);
// clean up
delete_file("test_mol_id_merge.data");
delete_file("test_mol_id.data");
}
int main(int argc, char **argv)