34 lines
703 B
C++
34 lines
703 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <gtest/gtest.h>
|
||
|
|
#include <Unittests/unittests_common.hh>
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
class OpenMeshTrimeshCirculatorFaceEdge : public OpenMeshBase {
|
||
|
|
|
||
|
|
protected:
|
||
|
|
|
||
|
|
// This function is called before each test is run
|
||
|
|
virtual void SetUp() {
|
||
|
|
}
|
||
|
|
|
||
|
|
// This function is called after all tests are through
|
||
|
|
virtual void TearDown() {
|
||
|
|
|
||
|
|
// Do some final stuff with the member data here...
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
// Member already defined in OpenMeshBase
|
||
|
|
//Mesh mesh_;
|
||
|
|
};
|
||
|
|
|
||
|
|
/*
|
||
|
|
* ====================================================================
|
||
|
|
* Define tests below
|
||
|
|
* ====================================================================
|
||
|
|
*/
|
||
|
|
|
||
|
|
|