Skip to content

Commit

Permalink
[test] improve test definition and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Apr 24, 2024
1 parent 3bed668 commit e793876
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/kalman_f.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ namespace {
//! @test Verifies the state transition matrix F management overloads for
//! the default filter type.
[[maybe_unused]] auto test{[] {
using kalman = kalman<>;
kalman filter;
using kalman = decltype(filter);

assert(filter.f() == 1);

Expand Down
4 changes: 2 additions & 2 deletions test/kalman_h.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ For more information, please refer to <https://unlicense.org> */
namespace fcarouge::test {
namespace {
//! @test Verifies the observation transition matrix H management overloads for
//! the default filter type.
//! supported filter types.
[[maybe_unused]] auto test{[] {
using kalman = kalman<>;
kalman filter;
using kalman = decltype(filter);

assert(filter.h() == 1);

Expand Down

0 comments on commit e793876

Please sign in to comment.