MOAB: Mesh Oriented datABase
(version 5.4.1)
|
00001 /* ***************************************************************** 00002 MESQUITE -- The Mesh Quality Improvement Toolkit 00003 00004 Copyright 2006 Lawrence Livermore National Laboratory. Under 00005 the terms of Contract B545069 with the University of Wisconsin -- 00006 Madison, Lawrence Livermore National Laboratory retains certain 00007 rights in this software. 00008 00009 This library is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU Lesser General Public 00011 License as published by the Free Software Foundation; either 00012 version 2.1 of the License, or (at your option) any later version. 00013 00014 This library is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 Lesser General Public License for more details. 00018 00019 You should have received a copy of the GNU Lesser General Public License 00020 (lgpl.txt) along with this library; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 00023 (2006) [email protected] 00024 00025 ***************************************************************** */ 00026 00027 /** \file ElemSampleQMTest.cpp 00028 * \brief Unit tests for ElementSampleQM class 00029 * \author Jason Kraftcheck 00030 */ 00031 00032 #include "Mesquite.hpp" 00033 #include "ElemSampleQM.hpp" 00034 #include <cppunit/extensions/HelperMacros.h> 00035 00036 using namespace MBMesquite; 00037 00038 class ElemSampleQMTest : public CppUnit::TestFixture 00039 { 00040 private: 00041 CPPUNIT_TEST_SUITE( ElemSampleQMTest ); 00042 CPPUNIT_TEST( test_handle_from_sample ); 00043 CPPUNIT_TEST_SUITE_END(); 00044 00045 public: 00046 void test_handle_from_sample(); 00047 }; 00048 00049 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ElemSampleQMTest, "ElemSampleQMTest" ); 00050 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ElemSampleQMTest, "Unit" ); 00051 00052 void test_handle( Sample sample, size_t elem ) 00053 { 00054 size_t handle = ElemSampleQM::handle( sample, elem ); 00055 CPPUNIT_ASSERT_EQUAL( sample.dimension, ElemSampleQM::sample( handle ).dimension ); 00056 CPPUNIT_ASSERT_EQUAL( sample.number, ElemSampleQM::sample( handle ).number ); 00057 CPPUNIT_ASSERT_EQUAL( elem, (size_t)ElemSampleQM::elem( handle ) ); 00058 } 00059 00060 void ElemSampleQMTest::test_handle_from_sample() 00061 { 00062 Sample min_sample_no( 0, 0 ); 00063 Sample max_sample_no( Sample::SIDE_DIMENSON_MASK, Sample::SIDE_NUMBER_MASK ); 00064 size_t min_elem_no = 0; 00065 size_t max_elem_no = ElemSampleQM::MAX_ELEM_PER_PATCH - 1; 00066 00067 test_handle( min_sample_no, min_elem_no ); 00068 test_handle( min_sample_no, max_elem_no ); 00069 test_handle( max_sample_no, min_elem_no ); 00070 test_handle( max_sample_no, max_elem_no ); 00071 }