Skip to content

Commit c834fa8

Browse files
committed
minor test fix
1 parent 6874aa1 commit c834fa8

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

test/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
- `/boost`
44
Contains some rapid tests for the `Boost::Unit` module.
55

6+
- `/delaunay`
7+
Contains the automatic unit tests for the class `Math::Delaunay`.
8+
9+
- `/math`
10+
Contains the automatic unit tests for the class `Math::Utils`.
11+
12+
- `/optimisationsolver`
13+
Contains the automatic unit tests for the class `OptimisationSolver`.
14+
615
- `/rigidbodysolver`
716
Contains the automatic unit tests for the class `RigidBodySolver` (requires QtTest from the Qt framework).
817

test/optimisationsolver/optimisationsolver.pro

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,30 @@ SOURCES += $$PWD/dummysolver.cpp
1212
INCLUDEPATH += ../../include
1313

1414
# Dependancies:
15-
include($$PWD/../../src/core/core.pri)
15+
HEADERS += $$PWD/../../src/core/optimizer/controller.h
16+
SOURCES += $$PWD/../../src/core/optimizer/controller.cpp
1617

17-
HEADERS += $$PWD/../../src/math/utils.h
18+
HEADERS += $$PWD/../../src/core/optimizer/maxminload.h
19+
SOURCES += $$PWD/../../src/core/optimizer/maxminload.cpp
20+
21+
HEADERS += $$PWD/../../src/core/optimizer/optimisationsolver.h
22+
SOURCES += $$PWD/../../src/core/optimizer/optimisationsolver.cpp
23+
24+
HEADERS += $$PWD/../../src/core/designspace.h
25+
SOURCES += $$PWD/../../src/core/designspace.cpp
26+
27+
HEADERS += $$PWD/../../src/core/fastener.h
28+
SOURCES += $$PWD/../../src/core/fastener.cpp
29+
30+
HEADERS += $$PWD/../../src/core/splice.h
31+
SOURCES += $$PWD/../../src/core/splice.cpp
32+
33+
HEADERS += $$PWD/../../src/core/tensor.h
34+
SOURCES += $$PWD/../../src/core/tensor.cpp
35+
36+
HEADERS += $$PWD/../../src/core/solvers/isolver.h
37+
HEADERS += $$PWD/../../src/core/units/unit_system.h
38+
HEADERS += $$PWD/../../src/math/utils.h
1839

1940
#-------------------------------------------------
2041
# Boost

0 commit comments

Comments
 (0)