office-gobmx/test/source/text/textdocumentsettings.cxx
Noel Grandin 008f4273ae loplugin:ostr in test
Change-Id: Ie261167fc3e1ed9073210e0f8b179455da340c83
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167620
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
2024-05-14 11:47:53 +02:00

42 lines
1.8 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <test/text/textdocumentsettings.hxx>
#include <test/unoapi_property_testers.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/uno/Reference.hxx>
using namespace css::uno;
namespace apitest
{
TextDocumentSettings::~TextDocumentSettings() {}
void TextDocumentSettings::testDocumentSettingsProperties()
{
css::uno::Reference<css::beans::XPropertySet> xDocumentSettings(init(),
css::uno::UNO_QUERY_THROW);
testBooleanOptionalProperty(xDocumentSettings, u"ChartAutoUpdate"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"AddParaTableSpacing"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"AddParaTableSpacingAtStart"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"AlignTabStopPosition"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"SaveGlobalDocumentLinks"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"IsLabelDocument"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"UseFormerLineSpacing"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"AddParaSpacingToTableCells"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"UseFormerObjectPositioning"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"ConsiderTextWrapOnObjPos"_ustr);
testBooleanOptionalProperty(xDocumentSettings, u"MathBaselineAlignment"_ustr);
}
} // end namespace apitest
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */