@@ -121,7 +121,10 @@ TEST_CASE("Arithmetic -> Subtraction -> Subtract purely imaginary numbers",
121
121
require_approx_equal (Complex (0.0 , -1.0 ), c1 - c2);
122
122
}
123
123
124
- TEST_CASE (" Arithmetic -> Subtraction -> Subtract numbers with real and imaginary part" ,
124
+ TEST_CASE (
125
+ // clang-format off
126
+ " Arithmetic -> Subtraction -> Subtract numbers with real and imaginary part" ,
127
+ // clang-format on
125
128
" [f876feb1-f9d1-4d34-b067-b599a8746400]" ) {
126
129
const Complex c1{1.0 , 2.0 };
127
130
const Complex c2{3.0 , 4.0 };
@@ -145,7 +148,10 @@ TEST_CASE("Arithmetic -> Multiplication -> Multiply purely imaginary numbers",
145
148
require_approx_equal (Complex (-2.0 , 0.0 ), c1 * c2);
146
149
}
147
150
148
- TEST_CASE (" Arithmetic -> Multiplication -> Multiply numbers with real and imaginary part" ,
151
+ TEST_CASE (
152
+ // clang-format off
153
+ " Arithmetic -> Multiplication -> Multiply numbers with real and imaginary part" ,
154
+ // clang-format on
149
155
" [4d1d10f0-f8d4-48a0-b1d0-f284ada567e6]" ) {
150
156
const Complex c1{1.0 , 2.0 };
151
157
const Complex c2{3.0 , 4.0 };
@@ -192,14 +198,20 @@ TEST_CASE("Absolute value -> Absolute value of a negative purely real number",
192
198
REQUIRE_THAT (c.abs (), Catch::Matchers::WithinAbs (5.0 , eps));
193
199
}
194
200
195
- TEST_CASE (" Absolute value -> Absolute value of a purely imaginary number with positive imaginary part" ,
201
+ TEST_CASE (
202
+ // clang-format off
203
+ " Absolute value -> Absolute value of a purely imaginary number with positive imaginary part" ,
204
+ // clang-format on
196
205
" [bbe26568-86c1-4bb4-ba7a-da5697e2b994]" ) {
197
206
const Complex c{0.0 , 5.0 };
198
207
199
208
REQUIRE_THAT (c.abs (), Catch::Matchers::WithinAbs (5.0 , eps));
200
209
}
201
210
202
- TEST_CASE (" Absolute value -> Absolute value of a purely imaginary number with negative imaginary part" ,
211
+ TEST_CASE (
212
+ // clang-format off
213
+ " Absolute value -> Absolute value of a purely imaginary number with negative imaginary part" ,
214
+ // clang-format on
203
215
" [3b48233d-468e-4276-9f59-70f4ca1f26f3]" ) {
204
216
const Complex c{0.0 , -5.0 };
205
217
0 commit comments