forked from ethz-asl/ethzasl_msf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ethz-asl#51 from ethz-asl/feature/unit_test_simila…
…rity_transform Feature/unit test similarity transform
- Loading branch information
Showing
3 changed files
with
121 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (C) 2014 Simon Lynen, ASL, ETH Zurich, Switzerland | ||
* You can contact the author at <slynen at ethz dot ch> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef TESTING_PREDICATES_H_ | ||
#define TESTING_PREDICATES_H_ | ||
|
||
#include <gtest/gtest.h> | ||
#include <glog/logging.h> | ||
|
||
#define __INTERNAL_GTEST_NEAR_EIGEN(PREDICATE, matrix_A, matrix_B, precision) \ | ||
PREDICATE##_TRUE((matrix_A).isApprox((matrix_B), precision)) \ | ||
<< "For matrices '" << #matrix_A << "' and '" << #matrix_B << "'." \ | ||
<< std::endl << "Where '" << #matrix_A << "' equals: " << std::endl \ | ||
<< (matrix_A) << std::endl \ | ||
<< "and '" << #matrix_B << "' equals: " \ | ||
<< std::endl << (matrix_B) << std::endl \ | ||
<< "and precision equals: " << precision; | ||
|
||
#define EXPECT_NEAR_EIGEN(matrix_A, matrix_B, precision) \ | ||
__INTERNAL_GTEST_NEAR_EIGEN(EXPECT, matrix_A, matrix_B, precision) | ||
|
||
#define ASSERT_NEAR_EIGEN(matrix_A, matrix_B, precision) \ | ||
__INTERNAL_GTEST_NEAR_EIGEN(ASSERT, matrix_A, matrix_B, precision) | ||
|
||
#endif // TESTING_PREDICATES_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters