blob: c69fafe50524f3d38e19a6a8845b5cf0bbcd94dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Test fixture with SPDocument per entire test case.
*
* Author:
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2015 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "doc-per-case-test.h"
#include "inkscape.h"
std::unique_ptr<SPDocument> DocPerCaseTest::_doc = nullptr;
DocPerCaseTest::DocPerCaseTest() :
::testing::Test()
{
}
void DocPerCaseTest::SetUpTestCase()
{
if ( !Inkscape::Application::exists() )
{
// Create the global inkscape object.
Inkscape::Application::create(false);
}
_doc.reset(SPDocument::createNewDoc( NULL, TRUE, true ));
ASSERT_TRUE(bool(_doc));
}
void DocPerCaseTest::TearDownTestCase()
{
_doc.reset();
}
/*
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 :
|