blob: 6bfd8a76edcad64f8ec2bbe7f572a1f7f6a8af0b (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* LPE 64B tests
* Because some issues rounding in 32B windows we move this tests only to 64B
*//*
* Authors: see git history
*
* Copyright (C) 2020 Authors
*
* Released under GNU GPL version 2 or later, read the file 'COPYING' for more information
*/
#include <gtest/gtest.h>
#include <testfiles/lpespaths-test.h>
#include <src/inkscape.h>
using namespace Inkscape;
using namespace Inkscape::LivePathEffect;
class LPE64Test : public LPESPathsTest {
public:
void run() {
testDoc(svg);
}
};
// A) FILE BASED TESTS
TEST_F(LPE64Test, Inkscape_0_92_64) { run(); }
TEST_F(LPE64Test, Inkscape_1_0_64) { run(); }
// B) CUSTOM TESTS
|