diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2016-06-09 09:04:46 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2016-06-09 09:04:46 +0000 |
| commit | f931da0fd590275ed17fe3c53842fe5c541b87c0 (patch) | |
| tree | 132337fd009abe18ab38a866cf409919d2255cf0 /testfiles/doc-per-case-test.cpp | |
| parent | [Bug #1574561] Italian translation updates for 0.92.x. (diff) | |
| parent | Fix testing dependencies (diff) | |
| download | inkscape-f931da0fd590275ed17fe3c53842fe5c541b87c0.tar.gz inkscape-f931da0fd590275ed17fe3c53842fe5c541b87c0.zip | |
Fix make test target
(bzr r14968)
Diffstat (limited to 'testfiles/doc-per-case-test.cpp')
| -rw-r--r-- | testfiles/doc-per-case-test.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/testfiles/doc-per-case-test.cpp b/testfiles/doc-per-case-test.cpp new file mode 100644 index 000000000..da75b1e65 --- /dev/null +++ b/testfiles/doc-per-case-test.cpp @@ -0,0 +1,52 @@ +/* + * Test fixture with SPDocument per entire test case. + * + * Author: + * Jon A. Cruz <jon@joncruz.org> + * + * Copyright (C) 2015 Authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "doc-per-case-test.h" + +#include "inkscape.h" + +SPDocument *DocPerCaseTest::_doc = 0; + +DocPerCaseTest::DocPerCaseTest() : + ::testing::Test() +{ +} + +void DocPerCaseTest::SetUpTestCase() +{ + if ( !Inkscape::Application::exists() ) + { + // Create the global inkscape object. + Inkscape::Application::create("", false); + } + + _doc = SPDocument::createNewDoc( NULL, TRUE, true ); + ASSERT_TRUE( _doc != NULL ); +} + +void DocPerCaseTest::TearDownTestCase() +{ + if (_doc) { + _doc->doUnref(); + _doc = NULL; + } +} + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: expandtab:shiftwidth=4:tabstop=8:softtabstop=4 : |
