source: src/Parameters/unittests/Makefile.am@ aad989

ForceAnnealing_with_BondGraph_continued_betteresults
Last change on this file since aad989 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
RevLine 
[c68409]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
[dbb533]5PARAMETERSTESTSSOURCES = \
6 ../Parameters/unittests/ContinuousValueTest.cpp \
7 ../Parameters/unittests/ContinuousParameterTest.cpp \
8 ../Parameters/unittests/DiscreteValueTest.cpp \
[33d0af]9 ../Parameters/unittests/DiscreteParameterTest.cpp \
10 ../Parameters/unittests/Ops_ValidatorTest.cpp
[c68409]11
[dbb533]12PARAMETERSTESTSHEADERS = \
13 ../Parameters/unittests/ContinuousValueTest.hpp \
14 ../Parameters/unittests/ContinuousParameterTest.hpp \
15 ../Parameters/unittests/DiscreteValueTest.hpp \
[33d0af]16 ../Parameters/unittests/DiscreteParameterTest.hpp \
17 ../Parameters/unittests/Ops_ValidatorTest.hpp
[c68409]18
[dbb533]19PARAMETERSTESTS = \
20 ContinuousValueTest \
21 ContinuousParameterTest \
22 DiscreteValueTest \
[33d0af]23 DiscreteParameterTest \
24 Ops_ValidatorTest
[c68409]25
[dbb533]26TESTS += $(PARAMETERSTESTS)
27check_PROGRAMS += $(PARAMETERSTESTS)
28noinst_PROGRAMS += $(PARAMETERSTESTS)
[c68409]29
[b4b364]30PARAMETERSLIBS = \
[e9e86f]31 libUnitTest.la \
[748fc7]32 ../libMolecuilder.la \
[f79d65]33 ../libMolecuilderParameters.la \
34 ../libMolecuilderGeometry.la \
[4ecb2d]35 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[b4b364]36 ${CodePatterns_LIBS} \
37 $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
[c68409]38
39
[e9e86f]40ContinuousValueTest_SOURCES = \
[dbb533]41 ../Parameters/unittests/ContinuousValueTest.cpp \
42 ../Parameters/unittests/ContinuousValueTest.hpp \
[a696f9]43 ../Parameters/Validators/RangeValidator.hpp \
[3c5ef5]44 ../Parameters/Validators/RangeValidator_impl.hpp \
[345883]45 ../Parameters/Value_impl.hpp \
[3c5ef5]46 ../Parameters/Value.hpp \
47 ../Parameters/Value_impl.hpp \
[7dc60a]48 ../Parameters/ValueAsString.hpp \
[f10b0c]49 ../Parameters/ValueInterface.hpp
[dbb533]50ContinuousValueTest_LDADD = \
[2eded3e]51 ../libMolecuilderParameters.la \
52 ../libMolecuilderGeometry.la \
[b4b364]53 $(PARAMETERSLIBS)
[c68409]54
[e9e86f]55ContinuousParameterTest_SOURCES = \
[dbb533]56 ../Parameters/unittests/ContinuousParameterTest.cpp \
57 ../Parameters/unittests/ContinuousParameterTest.hpp \
[345883]58 ../Parameters/ParameterExceptions.hpp \
[3c5ef5]59 ../Parameters/Validators/RangeValidator.hpp \
60 ../Parameters/Validators/RangeValidator_impl.hpp \
61 ../Parameters/Validators/Validator.hpp \
[345883]62 ../Parameters/Parameter.hpp \
63 ../Parameters/Parameter_impl.hpp \
64 ../Parameters/ParameterInterface.hpp
[dbb533]65ContinuousParameterTest_LDADD = \
[b4b364]66 $(PARAMETERSLIBS)
[c68409]67
[e9e86f]68DiscreteValueTest_SOURCES = \
[dbb533]69 ../Parameters/unittests/DiscreteValueTest.cpp \
70 ../Parameters/unittests/DiscreteValueTest.hpp \
[e45c1d]71 ../Parameters/ParameterExceptions.hpp \
[916a2d]72 ../Parameters/Validators/DiscreteValidator.hpp \
[9b5eb0]73 ../Parameters/Validators/DiscreteValidator_impl.hpp \
[0ba371]74 ../Parameters/Validators/Validator.hpp \
[3c5ef5]75 ../Parameters/Value.hpp \
76 ../Parameters/Value_impl.hpp \
[7dc60a]77 ../Parameters/ValueAsString.hpp \
[c68409]78 ../Parameters/ValueInterface.hpp
[dbb533]79DiscreteValueTest_LDADD = \
[b4b364]80 $(PARAMETERSLIBS)
[c68409]81
[e9e86f]82DiscreteParameterTest_SOURCES = \
[dbb533]83 ../Parameters/unittests/DiscreteParameterTest.cpp \
84 ../Parameters/unittests/DiscreteParameterTest.hpp \
[3c5ef5]85 ../Parameters/Parameter.hpp \
86 ../Parameters/Parameter_impl.hpp \
[9cd0d0]87 ../Parameters/ParameterInterface.hpp \
[3c5ef5]88 ../Parameters/Validators/DiscreteValidator.hpp \
89 ../Parameters/Validators/DiscreteValidator_impl.hpp \
90 ../Parameters/Validators/Validator.hpp \
[4892c3]91 ../Parameters/Value.hpp \
92 ../Parameters/Value_impl.hpp \
[7dc60a]93 ../Parameters/ValueAsString.hpp \
[4892c3]94 ../Parameters/ValueInterface.hpp
[3c5ef5]95DiscreteParameterTest_LDADD = \
[b4b364]96 $(PARAMETERSLIBS)
[33d0af]97
[e9e86f]98Ops_ValidatorTest_SOURCES = \
[33d0af]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 = \
[b4b364]110 $(PARAMETERSLIBS)
[c68409]111
112
113#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.