nss: upgrade to release 3.73
[LibreOffice.git] / include / test / cppunitasserthelper.hxx
blobb6703e255ce08626e73dc24e740922e85cb4ad18
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #ifndef INCLUDED_TEST_CPPUNITASSERTHELPER_HXX
11 #define INCLUDED_TEST_CPPUNITASSERTHELPER_HXX
13 #include <rtl/ustring.hxx>
15 #include <com/sun/star/awt/Point.hpp>
16 #include <com/sun/star/awt/Size.hpp>
17 #include <com/sun/star/table/CellAddress.hpp>
18 #include <com/sun/star/table/CellRangeAddress.hpp>
20 #include <cppunit/TestAssert.h>
22 CPPUNIT_NS_BEGIN
24 /** @brief Trait used by CPPUNIT_ASSERT* macros to compare com::sun::star:awt::Point.
26 * This specialization from @c struct @c assertion_traits<> helps to compare
27 * @see com::sun::star::awt::Point.
29 template <> struct assertion_traits<css::awt::Point>
31 static bool equal(const css::awt::Point& x, const css::awt::Point& y) { return x == y; }
33 static std::string toString(const css::awt::Point& x)
35 OStringStream ost;
36 ost << "Point: " << x.X << "." << x.Y << " (coordinate: X.Y)";
37 return ost.str();
41 /** @brief Trait used by CPPUNIT_ASSERT* macros to compare com::sun::star:awt::Size.
43 * This specialization from @c struct @c assertion_traits<> helps to compare
44 * @see com::sun::star::awt::Size.
46 template <> struct assertion_traits<css::awt::Size>
48 static bool equal(const css::awt::Size& x, const css::awt::Size& y) { return x == y; }
50 static std::string toString(const css::awt::Size& x)
52 OStringStream ost;
53 ost << "Size: " << x.Width << " x " << x.Height << " (Width x Height)";
54 return ost.str();
58 /** @brief Trait used by CPPUNIT_ASSERT* macros to compare com::sun::star::table::CellAddress.
60 * This specialization from @c struct @c assertion_traits<> helps to compare
61 * @see com::sun::star::table::CellAddress.
63 template <> struct assertion_traits<css::table::CellAddress>
65 static bool equal(const css::table::CellAddress& x, const css::table::CellAddress& y)
67 return x == y;
70 static std::string toString(const css::table::CellAddress& x)
72 OStringStream ost;
73 ost << "Sheet: " << x.Sheet << " Column: " << x.Column << " Row: " << x.Row;
74 return ost.str();
78 /** @brief Trait used by CPPUNIT_ASSERT* macros to compare com::sun::star::table::CellRangeAddress.
80 * This specialization from @c struct @c assertion_traits<> helps to compare
81 * @see com::sun::star::table::CellRangeAddress.
83 template <> struct assertion_traits<css::table::CellRangeAddress>
85 static bool equal(const css::table::CellRangeAddress& x, const css::table::CellRangeAddress& y)
87 return x == y;
90 static std::string toString(const css::table::CellRangeAddress& x)
92 OStringStream ost;
93 ost << "Sheet: " << x.Sheet << " StartColumn: " << x.StartColumn
94 << " StartRow: " << x.StartRow << " EndColumn: " << x.EndColumn
95 << " EndRow: " << x.EndRow;
96 return ost.str();
100 CPPUNIT_NS_END
102 #endif // INCLUDED_TEST_CPPUNITASSERTHELPER_HXX
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */