Skip to content

Commit

Permalink
feat: add unit test for mils conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Nic Holthaus committed Dec 9, 2024
1 parent 02d8db7 commit be28038
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unitTests/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1659,6 +1659,8 @@ TEST_F(UnitConversion, length)
EXPECT_NEAR(17702.8, test, 5.0e-2);
test = convert<meters, chains>(1.0);
EXPECT_NEAR(0.0497097, test, 5.0e-7);
test = convert<inches, mils>(1.0);
EXPECT_NEAR(0.001, test, 5.0e-7);

}

Expand Down

0 comments on commit be28038

Please sign in to comment.