summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-11-09 06:06:48 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2013-11-09 06:36:49 +0100
commit6f40eec725923c91d2447363a3c14b07b2cc73ce (patch)
tree13af32ba7ca7b3120781ec53143ca2244dcc82d7 /include/test
parent10d6b8ed56ba972c13d7128b12276ff3acfb1208 (diff)
Calc UNO API test
Change-Id: I6dcd9ac05ff7c4a6fbae7947b0ceda8797feea2f
Diffstat (limited to 'include/test')
-rw-r--r--include/test/calc_unoapi_test.hxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/test/calc_unoapi_test.hxx b/include/test/calc_unoapi_test.hxx
new file mode 100644
index 000000000000..c31c35c33fd3
--- /dev/null
+++ b/include/test/calc_unoapi_test.hxx
@@ -0,0 +1,26 @@
+/* -*- 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/unoapi_test.hxx>
+
+// basic uno api test class for calc
+
+class OOO_DLLPUBLIC_TEST CalcUnoApiTest : public UnoApiTest
+{
+public:
+ CalcUnoApiTest(const OUString& path);
+
+ virtual void setUp();
+ virtual void tearDown();
+
+private:
+ css::uno::Reference<css::uno::XInterface> m_xCalcComponent;
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */