tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / xmlsecurity / qa / unit / xmlsecurity-dialogs-test.cxx
blobb5b16c3a72e402e2ae55b79032d8b3cf90b5343c
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 #include <sal/config.h>
11 #include <test/screenshot_test.hxx>
12 #include <vcl/abstdlg.hxx>
14 using namespace ::com::sun::star;
16 /// Test opening a dialog in xmlsecurity
17 class XmlsecurityDialogsTest : public ScreenshotTest
19 private:
20 /// helper method to populate KnownDialogs, called in setUp(). Needs to be
21 /// written and has to add entries to KnownDialogs
22 virtual void registerKnownDialogsByID(mapType& rKnownDialogs) override;
24 /// dialog creation for known dialogs by ID. Has to be implemented for
25 /// each registered known dialog
26 virtual VclPtr<VclAbstractDialog> createDialogByID(sal_uInt32 nID) override;
28 public:
29 XmlsecurityDialogsTest();
31 // try to open a dialog
32 void openAnyDialog();
34 CPPUNIT_TEST_SUITE(XmlsecurityDialogsTest);
35 CPPUNIT_TEST(openAnyDialog);
36 CPPUNIT_TEST_SUITE_END();
39 XmlsecurityDialogsTest::XmlsecurityDialogsTest() {}
41 void XmlsecurityDialogsTest::registerKnownDialogsByID(mapType& /*rKnownDialogs*/)
43 // fill map of known dialogs
46 VclPtr<VclAbstractDialog> XmlsecurityDialogsTest::createDialogByID(sal_uInt32 /*nID*/)
48 return nullptr;
51 void XmlsecurityDialogsTest::openAnyDialog()
53 /// process input file containing the UXMLDescriptions of the dialogs to dump
54 processDialogBatchFile(u"xmlsecurity/qa/unit/data/xmlsecurity-dialogs-test.txt");
57 CPPUNIT_TEST_SUITE_REGISTRATION(XmlsecurityDialogsTest);
59 CPPUNIT_PLUGIN_IMPLEMENT();
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */