summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-11-07 10:19:32 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-11-07 10:47:35 +0100
commit5946eedfb78e250a40f14ae1e5b709e827b2504c (patch)
tree53e224bc8277264156034d22854b2967c17673ca
parent9d2baccabec7f0e04469a715da613886999b6e0e (diff)
test: clang-format recently added xsheet tests
Jens says he was unhappy with the 80 cols limit, so clang-format was explicitly avoided for these new files, but now that the both the config and TEMPLATE.SOURCECODE.HEADER says 100, it's fine to reformat these to enforce consistency from now on. Change-Id: Ia6f0a65920ad2c9d7b0834a0712356568c39624e
-rw-r--r--include/test/cppunitasserthelper.hxx20
-rw-r--r--include/test/sheet/xsheetcellrange.hxx7
-rw-r--r--include/test/sheet/xsheetcellrangecontainer.hxx8
-rw-r--r--include/test/sheet/xsheetcellranges.hxx7
-rw-r--r--include/test/sheet/xsheetcondition.hxx7
-rw-r--r--include/test/sheet/xsheetconditionalentries.hxx10
-rw-r--r--include/test/sheet/xsheetconditionalentry.hxx7
-rw-r--r--test/source/sheet/xsheetcellrange.cxx8
-rw-r--r--test/source/sheet/xsheetcellrangecontainer.cxx61
-rw-r--r--test/source/sheet/xsheetcellranges.cxx18
-rw-r--r--test/source/sheet/xsheetcondition.cxx14
-rw-r--r--test/source/sheet/xsheetconditionalentries.cxx26
-rw-r--r--test/source/sheet/xsheetconditionalentry.cxx9
13 files changed, 97 insertions, 105 deletions
diff --git a/include/test/cppunitasserthelper.hxx b/include/test/cppunitasserthelper.hxx
index 0b26a228ba31..362413baef15 100644
--- a/include/test/cppunitasserthelper.hxx
+++ b/include/test/cppunitasserthelper.hxx
@@ -27,15 +27,11 @@ CPPUNIT_NS_BEGIN
* This specialization from @c struct @c assertion_traits<> helps to compare
* @see com::sun::star::table::CellAddress.
*/
-template<>
-struct assertion_traits<table::CellAddress>
+template <> struct assertion_traits<table::CellAddress>
{
- static bool equal(const table::CellAddress& x, const table::CellAddress& y)
- {
- return x == y;
- }
+ static bool equal(const table::CellAddress& x, const table::CellAddress& y) { return x == y; }
- static std::string toString( const table::CellAddress& x )
+ static std::string toString(const table::CellAddress& x)
{
OStringStream ost;
ost << "Sheet: " << x.Sheet << " Column: " << x.Column << " Row: " << x.Row;
@@ -48,19 +44,19 @@ struct assertion_traits<table::CellAddress>
* This specialization from @c struct @c assertion_traits<> helps to compare
* @see com::sun::star::table::CellRangeAddress.
*/
-template<>
-struct assertion_traits<table::CellRangeAddress>
+template <> struct assertion_traits<table::CellRangeAddress>
{
static bool equal(const table::CellRangeAddress& x, const table::CellRangeAddress& y)
{
return x == y;
}
- static std::string toString( const table::CellRangeAddress& x )
+ static std::string toString(const table::CellRangeAddress& x)
{
OStringStream ost;
- ost << "Sheet: " << x.Sheet << " StartColumn: " << x.StartColumn << " StartRow: " << x.StartRow
- << " EndColumn: " << x.EndColumn << " EndRow: " << x.EndRow;
+ ost << "Sheet: " << x.Sheet << " StartColumn: " << x.StartColumn
+ << " StartRow: " << x.StartRow << " EndColumn: " << x.EndColumn
+ << " EndRow: " << x.EndRow;
return ost.str();
}
};
diff --git a/include/test/sheet/xsheetcellrange.hxx b/include/test/sheet/xsheetcellrange.hxx
index 80fd064b7832..5f44d21dd0dd 100644
--- a/include/test/sheet/xsheetcellrange.hxx
+++ b/include/test/sheet/xsheetcellrange.hxx
@@ -10,25 +10,24 @@
#ifndef INCLUDED_TEST_SHEET_XSHEETCELLRANGE_HXX
#define INCLUDED_TEST_SHEET_XSHEETCELLRANGE_HXX
-
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <test/testdllapi.hxx>
-namespace apitest {
+namespace apitest
+{
class OOO_DLLPUBLIC_TEST XSheetCellRange
{
public:
- virtual css::uno::Reference< css::uno::XInterface > init() =0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
void testGetSpreadsheet();
protected:
~XSheetCellRange() {}
};
-
}
#endif // INCLUDED_TEST_SHEET_XSHEETCELLRANGE_HXX
diff --git a/include/test/sheet/xsheetcellrangecontainer.hxx b/include/test/sheet/xsheetcellrangecontainer.hxx
index f0b0c7355420..f87d80a78a47 100644
--- a/include/test/sheet/xsheetcellrangecontainer.hxx
+++ b/include/test/sheet/xsheetcellrangecontainer.hxx
@@ -18,21 +18,21 @@
#include <test/testdllapi.hxx>
-namespace apitest {
+namespace apitest
+{
class OOO_DLLPUBLIC_TEST XSheetCellRangeContainer
{
public:
- virtual css::uno::Reference< css::uno::XInterface > init() =0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
void testAddRemoveRangeAddress();
void testAddRemoveRangeAddresses();
protected:
~XSheetCellRangeContainer() {}
- css::uno::Sequence< com::sun::star::table::CellRangeAddress > createCellRangeAddresses();
+ css::uno::Sequence<com::sun::star::table::CellRangeAddress> createCellRangeAddresses();
};
-
}
#endif // INCLUDED_TEST_SHEET_XSHEETCELLRANGECONTAINER_HXX
diff --git a/include/test/sheet/xsheetcellranges.hxx b/include/test/sheet/xsheetcellranges.hxx
index 18275195df01..2024ec5f25e9 100644
--- a/include/test/sheet/xsheetcellranges.hxx
+++ b/include/test/sheet/xsheetcellranges.hxx
@@ -10,18 +10,18 @@
#ifndef INCLUDED_TEST_SHEET_XSHEETCELLRANGES_HXX
#define INCLUDED_TEST_SHEET_XSHEETCELLRANGES_HXX
-
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <test/testdllapi.hxx>
-namespace apitest {
+namespace apitest
+{
class OOO_DLLPUBLIC_TEST XSheetCellRanges
{
public:
- virtual css::uno::Reference< css::uno::XInterface > init() =0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
void testGetCells();
void testGetRangeAddresses();
@@ -30,7 +30,6 @@ public:
protected:
~XSheetCellRanges() {}
};
-
}
#endif // INCLUDED_TEST_SHEET_XSHEETCELLRANGES_HXX
diff --git a/include/test/sheet/xsheetcondition.hxx b/include/test/sheet/xsheetcondition.hxx
index 39fef9870c63..c25eae86858c 100644
--- a/include/test/sheet/xsheetcondition.hxx
+++ b/include/test/sheet/xsheetcondition.hxx
@@ -10,18 +10,18 @@
#ifndef INCLUDED_TEST_SHEET_XSHEETCONDITION_HXX
#define INCLUDED_TEST_SHEET_XSHEETCONDITION_HXX
-
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <test/testdllapi.hxx>
-namespace apitest {
+namespace apitest
+{
class OOO_DLLPUBLIC_TEST XSheetCondition
{
public:
- virtual css::uno::Reference< css::uno::XInterface > init() =0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
void testGetSetFormula1();
void testGetSetFormula2();
@@ -31,7 +31,6 @@ public:
protected:
~XSheetCondition() {}
};
-
}
#endif // INCLUDED_TEST_SHEET_XSHEETCONDITION_HXX
diff --git a/include/test/sheet/xsheetconditionalentries.hxx b/include/test/sheet/xsheetconditionalentries.hxx
index 35389cc4ca42..25a51325ea87 100644
--- a/include/test/sheet/xsheetconditionalentries.hxx
+++ b/include/test/sheet/xsheetconditionalentries.hxx
@@ -10,7 +10,6 @@
#ifndef INCLUDED_TEST_SHEET_XSHEETCONDITIONALENTRIES_HXX
#define INCLUDED_TEST_SHEET_XSHEETCONDITIONALENTRIES_HXX
-
#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/uno/XInterface.hpp>
@@ -19,13 +18,15 @@
#include <test/testdllapi.hxx>
-namespace apitest {
+namespace apitest
+{
class OOO_DLLPUBLIC_TEST XSheetConditionalEntries
{
public:
- virtual css::uno::Reference< css::uno::XInterface > init() =0;
- virtual css::uno::Sequence< com::sun::star::beans::PropertyValue > createCondition(const sal_Int32 nr) =0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
+ virtual css::uno::Sequence<com::sun::star::beans::PropertyValue>
+ createCondition(const sal_Int32 nr) = 0;
void testAddNew();
void testClear();
@@ -34,7 +35,6 @@ public:
protected:
~XSheetConditionalEntries() {}
};
-
}
#endif // INCLUDED_TEST_SHEET_XSHEETCONDITIONALENTRIES_HXX
diff --git a/include/test/sheet/xsheetconditionalentry.hxx b/include/test/sheet/xsheetconditionalentry.hxx
index 449e3534c333..775c55b5858b 100644
--- a/include/test/sheet/xsheetconditionalentry.hxx
+++ b/include/test/sheet/xsheetconditionalentry.hxx
@@ -10,25 +10,24 @@
#ifndef INCLUDED_TEST_SHEET_XSHEETCONDITIONALENTRY_HXX
#define INCLUDED_TEST_SHEET_XSHEETCONDITIONALENTRY_HXX
-
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <test/testdllapi.hxx>
-namespace apitest {
+namespace apitest
+{
class OOO_DLLPUBLIC_TEST XSheetConditionalEntry
{
public:
- virtual css::uno::Reference< css::uno::XInterface > init() =0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
void testGetSetStyleName();
protected:
~XSheetConditionalEntry() {}
};
-
}
#endif // INCLUDED_TEST_SHEET_XSHEETCONDITIONALENTRY_HXX
diff --git a/test/source/sheet/xsheetcellrange.cxx b/test/source/sheet/xsheetcellrange.cxx
index c3adc74e32ce..46f0e64b0e8e 100644
--- a/test/source/sheet/xsheetcellrange.cxx
+++ b/test/source/sheet/xsheetcellrange.cxx
@@ -19,16 +19,16 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
+namespace apitest
+{
void XSheetCellRange::testGetSpreadsheet()
{
- uno::Reference< sheet::XSheetCellRange > xSheetCellRange(init(), UNO_QUERY_THROW);
- uno::Reference< sheet::XSpreadsheet > xSheet = xSheetCellRange->getSpreadsheet();
+ uno::Reference<sheet::XSheetCellRange> xSheetCellRange(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSpreadsheet> xSheet = xSheetCellRange->getSpreadsheet();
CPPUNIT_ASSERT_MESSAGE("Unable to get spreadsheet", xSheet.is());
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/test/source/sheet/xsheetcellrangecontainer.cxx b/test/source/sheet/xsheetcellrangecontainer.cxx
index b68e09a7ffe2..05e630ab3f6e 100644
--- a/test/source/sheet/xsheetcellrangecontainer.cxx
+++ b/test/source/sheet/xsheetcellrangecontainer.cxx
@@ -20,60 +20,60 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
+namespace apitest
+{
void XSheetCellRangeContainer::testAddRemoveRangeAddress()
{
- uno::Reference< sheet::XSheetCellRangeContainer > xSCRC(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCellRangeContainer> xSCRC(init(), UNO_QUERY_THROW);
xSCRC->removeRangeAddresses(xSCRC->getRangeAddresses()); // prepare a clean slate
- uno::Sequence< table::CellRangeAddress > aAddr = createCellRangeAddresses();
+ uno::Sequence<table::CellRangeAddress> aAddr = createCellRangeAddresses();
sal_Int32 cnt = xSCRC->getCount();
xSCRC->addRangeAddress(aAddr[0], false);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddress (count)",
- cnt + 1, xSCRC->getCount());
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddress (count)", cnt + 1,
+ xSCRC->getCount());
- uno::Sequence< table::CellRangeAddress > aAfterAddAddr = xSCRC->getRangeAddresses();
+ uno::Sequence<table::CellRangeAddress> aAfterAddAddr = xSCRC->getRangeAddresses();
cnt = xSCRC->getCount();
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddress (entry)",
- aAddr[0], aAfterAddAddr[cnt - 1]);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddress (entry)", aAddr[0],
+ aAfterAddAddr[cnt - 1]);
xSCRC->removeRangeAddress(aAddr[0]);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to remove CellRangeAddress (count)",
- cnt - 1, xSCRC->getCount());
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to remove CellRangeAddress (count)", cnt - 1,
+ xSCRC->getCount());
- uno::Sequence< table::CellRangeAddress > aAfterRemoveAddr = xSCRC->getRangeAddresses();
- for ( auto const & addr : aAfterRemoveAddr )
+ uno::Sequence<table::CellRangeAddress> aAfterRemoveAddr = xSCRC->getRangeAddresses();
+ for (auto const& addr : aAfterRemoveAddr)
{
- CPPUNIT_ASSERT_MESSAGE("Unable to remove CellRangeAddress (entry)",
- aAddr[0] != addr);
+ CPPUNIT_ASSERT_MESSAGE("Unable to remove CellRangeAddress (entry)", aAddr[0] != addr);
}
}
void XSheetCellRangeContainer::testAddRemoveRangeAddresses()
{
- uno::Reference< sheet::XSheetCellRangeContainer > xSCRC(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCellRangeContainer> xSCRC(init(), UNO_QUERY_THROW);
xSCRC->removeRangeAddresses(xSCRC->getRangeAddresses()); // prepare a clean slate
- uno::Sequence< table::CellRangeAddress > aAddr = createCellRangeAddresses();
+ uno::Sequence<table::CellRangeAddress> aAddr = createCellRangeAddresses();
sal_Int32 cnt = xSCRC->getCount();
xSCRC->addRangeAddresses(aAddr, false);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddress (count)",
- cnt + 2, xSCRC->getCount());
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddress (count)", cnt + 2,
+ xSCRC->getCount());
- uno::Sequence< table::CellRangeAddress > aAfterAddAddr = xSCRC->getRangeAddresses();
+ uno::Sequence<table::CellRangeAddress> aAfterAddAddr = xSCRC->getRangeAddresses();
cnt = xSCRC->getCount();
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddresses (entry: first)",
- aAddr[0], aAfterAddAddr[cnt - 2]);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddresses (entry: second)",
- aAddr[1], aAfterAddAddr[cnt - 1]);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddresses (entry: first)", aAddr[0],
+ aAfterAddAddr[cnt - 2]);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add CellRangeAddresses (entry: second)", aAddr[1],
+ aAfterAddAddr[cnt - 1]);
xSCRC->removeRangeAddresses(aAddr);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to remove CellRangeAddresses (count)",
- cnt - 2, xSCRC->getCount());
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to remove CellRangeAddresses (count)", cnt - 2,
+ xSCRC->getCount());
- uno::Sequence< table::CellRangeAddress > aAfterRemoveAddr = xSCRC->getRangeAddresses();
- for ( auto const & addr : aAfterRemoveAddr )
+ uno::Sequence<table::CellRangeAddress> aAfterRemoveAddr = xSCRC->getRangeAddresses();
+ for (auto const& addr : aAfterRemoveAddr)
{
CPPUNIT_ASSERT_MESSAGE("Unable to remove CellRangeAddresses (entry: first)",
aAddr[0] != addr);
@@ -82,10 +82,10 @@ void XSheetCellRangeContainer::testAddRemoveRangeAddresses()
}
}
-uno::Sequence< table::CellRangeAddress > XSheetCellRangeContainer::createCellRangeAddresses()
+uno::Sequence<table::CellRangeAddress> XSheetCellRangeContainer::createCellRangeAddresses()
{
- uno::Sequence< table::CellRangeAddress > aAddr(2);
- for ( unsigned int i = 0; i < 2; i++ )
+ uno::Sequence<table::CellRangeAddress> aAddr(2);
+ for (unsigned int i = 0; i < 2; i++)
{
aAddr[i].Sheet = i;
aAddr[i].StartColumn = i;
@@ -96,7 +96,6 @@ uno::Sequence< table::CellRangeAddress > XSheetCellRangeContainer::createCellRan
return aAddr;
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/test/source/sheet/xsheetcellranges.cxx b/test/source/sheet/xsheetcellranges.cxx
index 0b590ad249a8..046541d02c23 100644
--- a/test/source/sheet/xsheetcellranges.cxx
+++ b/test/source/sheet/xsheetcellranges.cxx
@@ -22,31 +22,31 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
+namespace apitest
+{
void XSheetCellRanges::testGetCells()
{
- uno::Reference< sheet::XSheetCellRanges > xSheetCellRanges(init(), UNO_QUERY_THROW);
- uno::Reference< container::XEnumerationAccess > xEA = xSheetCellRanges->getCells();
+ uno::Reference<sheet::XSheetCellRanges> xSheetCellRanges(init(), UNO_QUERY_THROW);
+ uno::Reference<container::XEnumerationAccess> xEA = xSheetCellRanges->getCells();
CPPUNIT_ASSERT_MESSAGE("Unable to get cells", xEA->hasElements());
}
void XSheetCellRanges::testGetRangeAddresses()
{
- uno::Reference< sheet::XSheetCellRanges > xSheetCellRanges(init(), UNO_QUERY_THROW);
- uno::Sequence< table::CellRangeAddress > aCellRangeAddress = xSheetCellRanges->getRangeAddresses();
- CPPUNIT_ASSERT_MESSAGE("Unable to get RangeAddresses",
- aCellRangeAddress.getLength() > 2);
+ uno::Reference<sheet::XSheetCellRanges> xSheetCellRanges(init(), UNO_QUERY_THROW);
+ uno::Sequence<table::CellRangeAddress> aCellRangeAddress
+ = xSheetCellRanges->getRangeAddresses();
+ CPPUNIT_ASSERT_MESSAGE("Unable to get RangeAddresses", aCellRangeAddress.getLength() > 2);
}
void XSheetCellRanges::testGetRangeAddressesAsString()
{
- uno::Reference< sheet::XSheetCellRanges > xSheetCellRanges(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCellRanges> xSheetCellRanges(init(), UNO_QUERY_THROW);
CPPUNIT_ASSERT_MESSAGE("Unable to get RangeAddresses (string)",
xSheetCellRanges->getRangeAddressesAsString().indexOf("C1:D4") > 0);
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/test/source/sheet/xsheetcondition.cxx b/test/source/sheet/xsheetcondition.cxx
index ba7c22ecc436..402902700a79 100644
--- a/test/source/sheet/xsheetcondition.cxx
+++ b/test/source/sheet/xsheetcondition.cxx
@@ -20,11 +20,12 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
+namespace apitest
+{
void XSheetCondition::testGetSetFormula1()
{
- uno::Reference< sheet::XSheetCondition > xSheetCondition(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCondition> xSheetCondition(init(), UNO_QUERY_THROW);
OUString aFormula1;
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to get Formula1",
aFormula1 = xSheetCondition->getFormula1());
@@ -35,7 +36,7 @@ void XSheetCondition::testGetSetFormula1()
void XSheetCondition::testGetSetFormula2()
{
- uno::Reference< sheet::XSheetCondition > xSheetCondition(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCondition> xSheetCondition(init(), UNO_QUERY_THROW);
OUString aFormula2;
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to get Formula2",
aFormula2 = xSheetCondition->getFormula2());
@@ -46,19 +47,19 @@ void XSheetCondition::testGetSetFormula2()
void XSheetCondition::testGetSetOperator()
{
- uno::Reference< sheet::XSheetCondition > xSheetCondition(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCondition> xSheetCondition(init(), UNO_QUERY_THROW);
sheet::ConditionOperator aOperator = sheet::ConditionOperator_NONE;
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to get Operator",
aOperator = xSheetCondition->getOperator());
- xSheetCondition->setOperator( sheet::ConditionOperator_BETWEEN );
+ xSheetCondition->setOperator(sheet::ConditionOperator_BETWEEN);
sheet::ConditionOperator aOperatorNew = xSheetCondition->getOperator();
CPPUNIT_ASSERT_MESSAGE("Unable to set Operator", aOperator != aOperatorNew);
}
void XSheetCondition::testGetSetSourcePosition()
{
- uno::Reference< sheet::XSheetCondition > xSheetCondition(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetCondition> xSheetCondition(init(), UNO_QUERY_THROW);
table::CellAddress aSourcePosition(0, 0, 0);
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to get SourcePosition",
aSourcePosition = xSheetCondition->getSourcePosition());
@@ -68,7 +69,6 @@ void XSheetCondition::testGetSetSourcePosition()
CPPUNIT_ASSERT_MESSAGE("Unable to set SourcePosition",
aSourcePosition.Row != aSourcePositionNew.Row);
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/test/source/sheet/xsheetconditionalentries.cxx b/test/source/sheet/xsheetconditionalentries.cxx
index e22f3b8195e9..b464303310cc 100644
--- a/test/source/sheet/xsheetconditionalentries.cxx
+++ b/test/source/sheet/xsheetconditionalentries.cxx
@@ -21,39 +21,41 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
+namespace apitest
+{
void XSheetConditionalEntries::testAddNew()
{
- uno::Reference< sheet::XSheetConditionalEntries > xSheetConditionalEntries(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetConditionalEntries> xSheetConditionalEntries(init(),
+ UNO_QUERY_THROW);
const sal_Int32 aCount = xSheetConditionalEntries->getCount();
xSheetConditionalEntries->addNew(createCondition(4));
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add new condition",
- aCount + 1, xSheetConditionalEntries->getCount());
-
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to add new condition", aCount + 1,
+ xSheetConditionalEntries->getCount());
}
void XSheetConditionalEntries::testClear()
{
- uno::Reference< sheet::XSheetConditionalEntries > xSheetConditionalEntries(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetConditionalEntries> xSheetConditionalEntries(init(),
+ UNO_QUERY_THROW);
xSheetConditionalEntries->clear();
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to clear conditions",
- sal_Int32(0), xSheetConditionalEntries->getCount());
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to clear conditions", sal_Int32(0),
+ xSheetConditionalEntries->getCount());
}
void XSheetConditionalEntries::testRemoveByIndex()
{
- uno::Reference< sheet::XSheetConditionalEntries > xSheetConditionalEntries(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetConditionalEntries> xSheetConditionalEntries(init(),
+ UNO_QUERY_THROW);
const sal_Int32 aCount = xSheetConditionalEntries->getCount();
xSheetConditionalEntries->removeByIndex(0);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to remove condition",
- aCount - 1, xSheetConditionalEntries->getCount());
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to remove condition", aCount - 1,
+ xSheetConditionalEntries->getCount());
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/test/source/sheet/xsheetconditionalentry.cxx b/test/source/sheet/xsheetconditionalentry.cxx
index e6d3afcde020..e72c95a12129 100644
--- a/test/source/sheet/xsheetconditionalentry.cxx
+++ b/test/source/sheet/xsheetconditionalentry.cxx
@@ -18,20 +18,19 @@
using namespace com::sun::star;
using namespace com::sun::star::uno;
-namespace apitest {
+namespace apitest
+{
void XSheetConditionalEntry::testGetSetStyleName()
{
- uno::Reference< sheet::XSheetConditionalEntry > xSheetConditionalEntry(init(), UNO_QUERY_THROW);
+ uno::Reference<sheet::XSheetConditionalEntry> xSheetConditionalEntry(init(), UNO_QUERY_THROW);
OUString aStyleName = xSheetConditionalEntry->getStyleName();
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to get StyleName",
- OUString("Result2"), aStyleName);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unable to get StyleName", OUString("Result2"), aStyleName);
xSheetConditionalEntry->setStyleName("Heading");
CPPUNIT_ASSERT_MESSAGE("Unable to set StyleName",
aStyleName != xSheetConditionalEntry->getStyleName());
}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */