LCOV - code coverage report
Current view: top level - source/tests - TestCholesky.h (source / functions) Hit Total Coverage
Test: LibForBES Unit Tests Lines: 6 6 100.0 %
Date: 2016-04-18 Functions: 6 6 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * File:   TestCholesky.h
       3             :  * Author: Pantelis Sopasakis
       4             :  *
       5             :  * Created on Aug 5, 2015, 12:28:54 AM
       6             :  * 
       7             :  * ForBES is free software: you can redistribute it and/or modify
       8             :  * it under the terms of the GNU Lesser General Public License as published by
       9             :  * the Free Software Foundation, either version 3 of the License, or
      10             :  * (at your option) any later version.
      11             :  *  
      12             :  * ForBES is distributed in the hope that it will be useful,
      13             :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      14             :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
      15             :  * GNU Lesser General Public License for more details.
      16             :  * 
      17             :  * You should have received a copy of the GNU Lesser General Public License
      18             :  * along with ForBES. If not, see <http://www.gnu.org/licenses/>.
      19             :  */
      20             : 
      21             : #ifndef TESTCHOLESKY_H
      22             : #define TESTCHOLESKY_H
      23             : 
      24             : #define FORBES_TEST_UTILS
      25             : 
      26             : #include "ForBES.h"
      27             : #include "ForBESUtils.h"
      28             : 
      29             : #include <cppunit/extensions/HelperMacros.h>
      30             : 
      31             : class TestCholesky : public CPPUNIT_NS::TestFixture {
      32           2 :     CPPUNIT_TEST_SUITE(TestCholesky);
      33             : 
      34           1 :     CPPUNIT_TEST(testCholeskyDense);
      35           1 :     CPPUNIT_TEST(testCholeskySymmetric);
      36           1 :     CPPUNIT_TEST(testCholeskySymmetric2);
      37           1 :     CPPUNIT_TEST(testCholeskySparse);
      38             :     
      39             : 
      40           5 :     CPPUNIT_TEST_SUITE_END();
      41             : 
      42             : public:
      43             :     TestCholesky();
      44             :     virtual ~TestCholesky();
      45             :     void setUp();
      46             :     void tearDown();
      47             : 
      48             : private:
      49             :     void testCholeskyDense();
      50             :     void testCholeskySymmetric();
      51             :     void testCholeskySymmetric2();
      52             :     void testCholeskySparse();
      53             :     
      54             : };
      55             : 
      56             : #endif  /* TESTCHOLESKY_H */

Generated by: LCOV version 1.10