| [5a8d61] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
|  | 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
|  | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | /* | 
|---|
|  | 9 | * Shape_HomogeneousPointsUnitTest.cpp | 
|---|
|  | 10 | * | 
|---|
|  | 11 | *  Created on: Jun 19, 2010 | 
|---|
|  | 12 | *      Author: heber | 
|---|
|  | 13 | */ | 
|---|
|  | 14 |  | 
|---|
|  | 15 | // include config.h | 
|---|
|  | 16 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 17 | #include <config.h> | 
|---|
|  | 18 | #endif | 
|---|
|  | 19 |  | 
|---|
|  | 20 | #include <cppunit/CompilerOutputter.h> | 
|---|
|  | 21 | #include <cppunit/extensions/TestFactoryRegistry.h> | 
|---|
|  | 22 | #include <cppunit/ui/text/TestRunner.h> | 
|---|
|  | 23 |  | 
|---|
|  | 24 | #include <cmath> | 
|---|
|  | 25 | #include <limits> | 
|---|
| [c48641] | 26 | #include <vector> | 
|---|
| [5a8d61] | 27 |  | 
|---|
|  | 28 | #ifdef HAVE_TESTRUNNER | 
|---|
|  | 29 | #include "UnitTestMain.hpp" | 
|---|
|  | 30 | #endif /*HAVE_TESTRUNNER*/ | 
|---|
|  | 31 |  | 
|---|
|  | 32 | #include "CodePatterns/Assert.hpp" | 
|---|
|  | 33 |  | 
|---|
| [c48641] | 34 | #include "LinearAlgebra/Vector.hpp" | 
|---|
| [5a8d61] | 35 | #include "Shapes/BaseShapes.hpp" | 
|---|
|  | 36 | #include "Shapes/Shape.hpp" | 
|---|
|  | 37 |  | 
|---|
|  | 38 | #include "Shape_HomogeneousPointsUnitTest.hpp" | 
|---|
|  | 39 |  | 
|---|
|  | 40 | // Registers the fixture into the 'registry' | 
|---|
|  | 41 | CPPUNIT_TEST_SUITE_REGISTRATION( Shape_HomogeneousPointsTest ); | 
|---|
|  | 42 |  | 
|---|
|  | 43 | void Shape_HomogeneousPointsTest::setUp() | 
|---|
|  | 44 | { | 
|---|
|  | 45 | // failing asserts should be thrown | 
|---|
|  | 46 | ASSERT_DO(Assert::Throw); | 
|---|
|  | 47 | } | 
|---|
|  | 48 |  | 
|---|
|  | 49 | void Shape_HomogeneousPointsTest::tearDown() | 
|---|
|  | 50 | {} | 
|---|
|  | 51 |  | 
|---|
|  | 52 | /** Unit test for points on Shape's surface. | 
|---|
|  | 53 | * | 
|---|
|  | 54 | */ | 
|---|
|  | 55 | void Shape_HomogeneousPointsTest::surfaceTest() | 
|---|
|  | 56 | { | 
|---|
| [c48641] | 57 | { | 
|---|
|  | 58 | Shape s = Sphere(); | 
|---|
|  | 59 | std::vector<Vector> nodes = s.getHomogeneousPointsOnSurface(12); | 
|---|
|  | 60 | CPPUNIT_ASSERT_EQUAL( (size_t)12, nodes.size()); | 
|---|
|  | 61 | for (size_t i=0;i<12;++i) | 
|---|
|  | 62 | CPPUNIT_ASSERT( s.isOnSurface(nodes[i]) ); | 
|---|
|  | 63 | } | 
|---|
|  | 64 | { | 
|---|
|  | 65 | Shape s = Sphere(zeroVec, 2.); | 
|---|
|  | 66 | std::vector<Vector> nodes = s.getHomogeneousPointsOnSurface(12); | 
|---|
|  | 67 | CPPUNIT_ASSERT_EQUAL( (size_t)12, nodes.size()); | 
|---|
|  | 68 | for (size_t i=0;i<12;++i) | 
|---|
|  | 69 | CPPUNIT_ASSERT( s.isOnSurface(nodes[i]) ); | 
|---|
|  | 70 | } | 
|---|
| [5a8d61] | 71 | } | 
|---|
|  | 72 |  | 
|---|
|  | 73 | /** Unit test for points in Shape's volume. | 
|---|
|  | 74 | * | 
|---|
|  | 75 | */ | 
|---|
|  | 76 | void Shape_HomogeneousPointsTest::volumeTest() | 
|---|
|  | 77 | { | 
|---|
| [c48641] | 78 | // is not implemented | 
|---|
|  | 79 | //  Shape s = Sphere(); | 
|---|
|  | 80 | //  std::vector<Vector> nodes = s.getHomogeneousPointsInVolume(12); | 
|---|
|  | 81 | //  CPPUNIT_ASSERT_EQUAL( (size_t)12, nodes.size()); | 
|---|
|  | 82 | //  for (size_t i=0;i<12;++i) | 
|---|
|  | 83 | //    CPPUNIT_ASSERT( s.isInside(nodes[i]) ); | 
|---|
| [5a8d61] | 84 | } | 
|---|