LCOV - code coverage report
Current view: top level - libreoffice/test/source/sheet - xgoalseek.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 10 0.0 %
Date: 2012-12-27 Functions: 0 3 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  */
       9             : 
      10             : #include "test/sheet/xgoalseek.hxx"
      11             : #include <com/sun/star/sheet/XGoalSeek.hpp>
      12             : #include <com/sun/star/sheet/GoalResult.hpp>
      13             : #include <com/sun/star/table/CellAddress.hpp>
      14             : 
      15             : #include "cppunit/extensions/HelperMacros.h"
      16             : 
      17             : using namespace com::sun::star::uno;
      18             : 
      19             : namespace apitest {
      20             : 
      21           0 : void XGoalSeek::testSeekGoal()
      22             : {
      23           0 :     uno::Reference< sheet::XGoalSeek > xGoalSeek(init(), UNO_QUERY_THROW);
      24             : 
      25           0 :     table::CellAddress aFormulaAddr(0,3,5);
      26           0 :     table::CellAddress aVariableAddr(0,3,4);
      27           0 :     sheet::GoalResult aResult = xGoalSeek->seekGoal(aFormulaAddr, aVariableAddr, "4");
      28             : 
      29           0 :     double nDivergence = 0.01;
      30           0 :     CPPUNIT_ASSERT( aResult.Divergence < nDivergence );
      31           0 :     CPPUNIT_ASSERT_DOUBLES_EQUAL(16, aResult.Result, nDivergence);
      32           0 : }
      33             : 
      34           0 : }
      35             : 
      36             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10