assimp/test/unit/utGenNormals.cpp

53 lines
1.5 KiB
C++
Raw Normal View History

2015-05-19 04:24:07 +00:00
#include "UnitTestPCH.h"
#include <GenVertexNormalsProcess.h>
using namespace std;
using namespace Assimp;
class GenNormalsTest : public ::testing::Test
{
public:
2015-05-19 04:26:05 +00:00
virtual void SetUp();
virtual void TearDown();
2015-05-19 04:24:07 +00:00
protected:
2015-05-19 04:26:05 +00:00
aiMesh* pcMesh;
GenVertexNormalsProcess* piProcess;
2015-05-19 04:24:07 +00:00
};
// ------------------------------------------------------------------------------------------------
void GenNormalsTest::SetUp()
{
2015-05-19 04:26:05 +00:00
piProcess = new GenVertexNormalsProcess();
pcMesh = new aiMesh();
pcMesh->mPrimitiveTypes = aiPrimitiveType_TRIANGLE;
pcMesh->mNumFaces = 1;
pcMesh->mFaces = new aiFace[1];
pcMesh->mFaces[0].mIndices = new unsigned int[pcMesh->mFaces[0].mNumIndices = 3];
pcMesh->mFaces[0].mIndices[0] = 0;
pcMesh->mFaces[0].mIndices[1] = 1;
pcMesh->mFaces[0].mIndices[2] = 1;
pcMesh->mNumVertices = 3;
pcMesh->mVertices = new aiVector3D[3];
pcMesh->mVertices[0] = aiVector3D(0.0f,1.0f,6.0f);
pcMesh->mVertices[1] = aiVector3D(2.0f,3.0f,1.0f);
pcMesh->mVertices[2] = aiVector3D(3.0f,2.0f,4.0f);
2015-05-19 04:24:07 +00:00
}
// ------------------------------------------------------------------------------------------------
void GenNormalsTest::TearDown()
{
2015-05-19 04:26:05 +00:00
delete this->pcMesh;
delete this->piProcess;
2015-05-19 04:24:07 +00:00
}
// ------------------------------------------------------------------------------------------------
TEST_F(GenNormalsTest, testSimpleTriangle)
{
2015-05-19 04:26:05 +00:00
piProcess->GenMeshVertexNormals(pcMesh, 0);
EXPECT_TRUE(pcMesh->mNormals != NULL);
2015-05-19 04:24:07 +00:00
}