LibreOffice Module test (master) 1
xgoalseek.cxx
Go to the documentation of this file.
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
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/TestAssert.h>
16
17using namespace css;
18using namespace css::uno;
19
20namespace apitest
21{
23{
24 uno::Reference<sheet::XGoalSeek> xGoalSeek(init(), UNO_QUERY_THROW);
25
26 table::CellAddress aFormulaAddr(0, 3, 5);
27 table::CellAddress aVariableAddr(0, 3, 4);
28 sheet::GoalResult aResult = xGoalSeek->seekGoal(aFormulaAddr, aVariableAddr, "4");
29
30 double nDivergence = 0.01;
31 CPPUNIT_ASSERT(aResult.Divergence < nDivergence);
32 CPPUNIT_ASSERT_DOUBLES_EQUAL(16, aResult.Result, nDivergence);
33}
34}
35
36/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Reference< css::uno::XInterface > init()=0