summaryrefslogtreecommitdiff
path: root/include/test/screenshot_test.hxx
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-06-30 22:39:28 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2016-08-18 02:39:11 +0200
commit13184da2a39bc162b1912affd099daae74eb3a88 (patch)
tree4f6ddda873640294c4d34ca16d7d4c860251b3a9 /include/test/screenshot_test.hxx
parent2e288225568077df79703da086668b0d533449c8 (diff)
screenshots: move shared code to separate class
Change-Id: I1760de221bc53d345c2bbfb4fe878c120073ea45
Diffstat (limited to 'include/test/screenshot_test.hxx')
-rw-r--r--include/test/screenshot_test.hxx39
1 files changed, 39 insertions, 0 deletions
diff --git a/include/test/screenshot_test.hxx b/include/test/screenshot_test.hxx
new file mode 100644
index 000000000000..f07c29a9e65b
--- /dev/null
+++ b/include/test/screenshot_test.hxx
@@ -0,0 +1,39 @@
+/* -*- 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/.
+ */
+
+#ifndef INCLUDED_TEST_SCREENSHOT_TEST_HXX
+#define INCLUDED_TEST_SCREENSHOT_TEST_HXX
+
+#include <sal/config.h>
+#include <test/bootstrapfixture.hxx>
+#include <unotest/macros_test.hxx>
+#include <com/sun/star/lang/XComponent.hpp>
+#include <osl/file.hxx>
+
+class VclAbstractDialog;
+
+
+class OOO_DLLPUBLIC_TEST ScreenshotTest : public test::BootstrapFixture, public unotest::MacrosTest
+{
+public:
+ ScreenshotTest();
+
+ virtual void setUp() override;
+ virtual void tearDown() override;
+
+ void dumpDialogToPath( VclAbstractDialog& rDialog );
+
+private:
+ void saveScreenshot( VclAbstractDialog& rDialog );
+ OUString m_aScreenshotDirectory;
+};
+
+#endif // INCLUDED_TEST_SCREENSHOT_TEST_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */