source: src/Parameters/unittests/Makefile.am

Candidate_v1.6.1
Last change on this file was f79d65, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Vector(s) are now stored as strings in Querys intermediately.

  • they get evaluated first after being stored in a Parameter/Value on request via get().
  • Needed to change all Vector(s)..Query's of all UIs and also the general base classes inside Dialog.
  • QtQueryList need to be specialized in order to allow a QtQueryList<Vector> to actually store a vector of strings.
  • we may use setAsString() in order to set the Parameter thankfully.
  • TESTS: All regression tests on Geometry Actions are now working. Removed XFAIL from Options/Session test that use Python, i.e. the ones we marked four commits ago.
  • Property mode set to 100644
File size: 3.8 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
5PARAMETERSTESTSSOURCES = \
6 ../Parameters/unittests/ContinuousValueTest.cpp \
7 ../Parameters/unittests/ContinuousParameterTest.cpp \
8 ../Parameters/unittests/DiscreteValueTest.cpp \
9 ../Parameters/unittests/DiscreteParameterTest.cpp \
10 ../Parameters/unittests/Ops_ValidatorTest.cpp
11
12PARAMETERSTESTSHEADERS = \
13 ../Parameters/unittests/ContinuousValueTest.hpp \
14 ../Parameters/unittests/ContinuousParameterTest.hpp \
15 ../Parameters/unittests/DiscreteValueTest.hpp \
16 ../Parameters/unittests/DiscreteParameterTest.hpp \
17 ../Parameters/unittests/Ops_ValidatorTest.hpp
18
19PARAMETERSTESTS = \
20 ContinuousValueTest \
21 ContinuousParameterTest \
22 DiscreteValueTest \
23 DiscreteParameterTest \
24 Ops_ValidatorTest
25
26TESTS += $(PARAMETERSTESTS)
27check_PROGRAMS += $(PARAMETERSTESTS)
28noinst_PROGRAMS += $(PARAMETERSTESTS)
29
30PARAMETERSLIBS = \
31 libUnitTest.la \
32 ../libMolecuilder.la \
33 ../libMolecuilderParameters.la \
34 ../libMolecuilderGeometry.la \
35 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
36 ${CodePatterns_LIBS} \
37 $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
38
39
40ContinuousValueTest_SOURCES = \
41 ../Parameters/unittests/ContinuousValueTest.cpp \
42 ../Parameters/unittests/ContinuousValueTest.hpp \
43 ../Parameters/Validators/RangeValidator.hpp \
44 ../Parameters/Validators/RangeValidator_impl.hpp \
45 ../Parameters/Value_impl.hpp \
46 ../Parameters/Value.hpp \
47 ../Parameters/Value_impl.hpp \
48 ../Parameters/ValueAsString.hpp \
49 ../Parameters/ValueInterface.hpp
50ContinuousValueTest_LDADD = \
51 ../libMolecuilderParameters.la \
52 ../libMolecuilderGeometry.la \
53 $(PARAMETERSLIBS)
54
55ContinuousParameterTest_SOURCES = \
56 ../Parameters/unittests/ContinuousParameterTest.cpp \
57 ../Parameters/unittests/ContinuousParameterTest.hpp \
58 ../Parameters/ParameterExceptions.hpp \
59 ../Parameters/Validators/RangeValidator.hpp \
60 ../Parameters/Validators/RangeValidator_impl.hpp \
61 ../Parameters/Validators/Validator.hpp \
62 ../Parameters/Parameter.hpp \
63 ../Parameters/Parameter_impl.hpp \
64 ../Parameters/ParameterInterface.hpp
65ContinuousParameterTest_LDADD = \
66 $(PARAMETERSLIBS)
67
68DiscreteValueTest_SOURCES = \
69 ../Parameters/unittests/DiscreteValueTest.cpp \
70 ../Parameters/unittests/DiscreteValueTest.hpp \
71 ../Parameters/ParameterExceptions.hpp \
72 ../Parameters/Validators/DiscreteValidator.hpp \
73 ../Parameters/Validators/DiscreteValidator_impl.hpp \
74 ../Parameters/Validators/Validator.hpp \
75 ../Parameters/Value.hpp \
76 ../Parameters/Value_impl.hpp \
77 ../Parameters/ValueAsString.hpp \
78 ../Parameters/ValueInterface.hpp
79DiscreteValueTest_LDADD = \
80 $(PARAMETERSLIBS)
81
82DiscreteParameterTest_SOURCES = \
83 ../Parameters/unittests/DiscreteParameterTest.cpp \
84 ../Parameters/unittests/DiscreteParameterTest.hpp \
85 ../Parameters/Parameter.hpp \
86 ../Parameters/Parameter_impl.hpp \
87 ../Parameters/ParameterInterface.hpp \
88 ../Parameters/Validators/DiscreteValidator.hpp \
89 ../Parameters/Validators/DiscreteValidator_impl.hpp \
90 ../Parameters/Validators/Validator.hpp \
91 ../Parameters/Value.hpp \
92 ../Parameters/Value_impl.hpp \
93 ../Parameters/ValueAsString.hpp \
94 ../Parameters/ValueInterface.hpp
95DiscreteParameterTest_LDADD = \
96 $(PARAMETERSLIBS)
97
98Ops_ValidatorTest_SOURCES = \
99 ../Parameters/unittests/Ops_ValidatorTest.cpp \
100 ../Parameters/unittests/Ops_ValidatorTest.hpp \
101 ../Parameters/Validators/DiscreteValidator.hpp \
102 ../Parameters/Validators/DiscreteValidator_impl.hpp \
103 ../Parameters/Validators/DummyValidator.hpp \
104 ../Parameters/Validators/Ops_Validator.hpp \
105 ../Parameters/Validators/Ops_Validator_impl.hpp \
106 ../Parameters/Validators/RangeValidator.hpp \
107 ../Parameters/Validators/RangeValidator_impl.hpp \
108 ../Parameters/Validators/Validator.hpp
109Ops_ValidatorTest_LDADD = \
110 $(PARAMETERSLIBS)
111
112
113#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.