Algorith sandbox
matrix_operator_test.h
1 #pragma once
2 #include <gtest/gtest.h>
3 
4 namespace algo { namespace util_test {
5  class MatrixOperatorTest : public ::testing::Test {
6  protected:
7  //set-up
9  //clean-up does not throw exceptions
10  virtual ~MatrixOperatorTest();
11  //called before every test immediately after constructor
12  virtual void SetUp();
13  //called after every test before destructor
14  virtual void TearDown();
15  }; // class MatrixOperatorTest : public ::testing::Test {
16 } } // namespace algo { namespace util_test {
Definition: ublas_matrix_expression_concept.hpp:5
Definition: matrix_operator_test.h:5