Lines Matching refs:vec
94 for (auto &vec : invalidIntegerParameters) { variable
95 GIVEN ("intentional error: " + vec.title) {
96 create(Config{&Config::instances, vec.payload});
114 for (auto &vec : Tests<string>{ variable
117 GIVEN ("Invalid value " + vec.title) {
118 CHECK_THROWS_AS(setParameter(path, vec.payload), Exception);
121 for (auto &vec : Tests<string>{ variable
124 GIVEN ("A valid value " + vec.title) {
125 CHECK_NOTHROW(setParameter(path, vec.payload));
128 CHECK(getValueBack == vec.payload);
137 for (auto &vec : Tests<string>{ variable
140 GIVEN ("Invalid value " + vec.title) {
141 CHECK_THROWS_AS(setParameter(path, vec.payload), Exception);
144 for (auto &vec : Tests<string>{ variable
149 GIVEN ("A valid value " + vec.title) {
150 CHECK_NOTHROW(setParameter(path, vec.payload));
153 CHECK(getValueBack == vec.payload);
164 for (auto &vec : Tests<int32_t>{ variable
167 GIVEN ("A valid value " + vec.title) {
168 CHECK_NOTHROW(handle.setAsSignedInteger(vec.payload));
171 CHECK(getValueBack == vec.payload);
174 for (auto &vec : Tests<int32_t>{ variable
177 GIVEN ("An invalid value " + vec.title) {
178 CHECK_THROWS_AS(handle.setAsSignedInteger(vec.payload), Exception);
189 for (auto &vec : Tests<double>{ variable
194 GIVEN ("A valid value (rejected not supported)" + vec.title) {
195 CHECK_THROWS_AS(handle.setAsDouble(vec.payload), Exception);
198 for (auto &vec : Tests<double>{ variable
201 GIVEN ("An invalid value " + vec.title) {
202 CHECK_THROWS_AS(handle.setAsDouble(vec.payload), Exception);