summaryrefslogtreecommitdiffstats
path: root/test/doc-per-case-test.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2016-06-09 07:42:03 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2016-06-09 07:42:03 +0000
commit2f6f66fc8e4c21d0bd9f3d8dc15197fb945727c0 (patch)
treef4f9cbe38f955c59b1d9a689b23921ca2d1d420e /test/doc-per-case-test.cpp
parent[Bug #1574561] Italian translation updates for 0.92.x. (diff)
downloadinkscape-2f6f66fc8e4c21d0bd9f3d8dc15197fb945727c0.tar.gz
inkscape-2f6f66fc8e4c21d0bd9f3d8dc15197fb945727c0.zip
Rename test->testfiles folder to avoid naming conflict
(bzr r14967.1.1)
Diffstat (limited to 'test/doc-per-case-test.cpp')
-rw-r--r--test/doc-per-case-test.cpp52
1 files changed, 0 insertions, 52 deletions
diff --git a/test/doc-per-case-test.cpp b/test/doc-per-case-test.cpp
deleted file mode 100644
index da75b1e65..000000000
--- a/test/doc-per-case-test.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * 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 :