Skip to content

Commit 1c46371

Browse files
committed
Fix a few test messages.
1 parent 292a959 commit 1c46371

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

test-suite/forwardoption.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ class TestBinomialEngine : public BinomialVanillaEngine<CoxRossRubinstein>
395395

396396
// verify than if engine
397397
void ForwardOptionTest::testGreeksInitialization() {
398-
BOOST_TEST_MESSAGE("Testing forward option greeks initialization ...");
398+
BOOST_TEST_MESSAGE("Testing forward option greeks initialization...");
399399

400400
DayCounter dc = Actual360();
401401
Date today = Date::todaysDate();

test-suite/functions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ void FunctionsTest::testModifiedBesselFunctions() {
226226
}
227227

228228
void FunctionsTest::testWeightedModifiedBesselFunctions() {
229-
BOOST_TEST_MESSAGE("Testing weighted modified Bessel functions ...");
229+
BOOST_TEST_MESSAGE("Testing weighted modified Bessel functions...");
230230
Real nu = -5.0;
231231
while (nu <= 5.0) {
232232
Real x = 0.1;

test-suite/hestonmodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ void HestonModelTest::testExpansionOnAlanLewisReference() {
14231423
}
14241424

14251425
void HestonModelTest::testExpansionOnFordeReference() {
1426-
BOOST_TEST_MESSAGE("Testing expansion on Alan Lewis reference prices...");
1426+
BOOST_TEST_MESSAGE("Testing expansion on Forde reference prices...");
14271427

14281428
SavedSettings backup;
14291429

test-suite/interpolations.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,7 @@ void InterpolationTest::testRichardsonExtrapolation() {
17011701

17021702
void InterpolationTest::testNoArbSabrInterpolation(){
17031703

1704-
BOOST_TEST_MESSAGE("Testing noarb-Sabr interpolation...");
1704+
BOOST_TEST_MESSAGE("Testing no-arbitrage Sabr interpolation...");
17051705

17061706
// Test SABR function against input volatilities
17071707
Real tolerance = 1.0e-12;
@@ -1908,7 +1908,7 @@ void InterpolationTest::testSabrSingleCases() {
19081908

19091909
void InterpolationTest::testTransformations() {
19101910

1911-
BOOST_TEST_MESSAGE("Testing Sabr and NoArbSabr transformation functions ...");
1911+
BOOST_TEST_MESSAGE("Testing Sabr and no-arbitrage Sabr transformation functions...");
19121912

19131913
Real size = 25.0; // test inputs from [-size,size]^4
19141914

test-suite/noarbsabr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void checkD0(const Real sigmaI, const Real beta, const Real rho, const Real nu,
5050

5151
void NoArbSabrTest::testAbsorptionMatrix() {
5252

53-
BOOST_TEST_MESSAGE("Testing noarb-sabr absorption matrix ...");
53+
BOOST_TEST_MESSAGE("Testing no-arbitrage Sabr absorption matrix...");
5454

5555
// check some points explicitly against the external file's contents
5656

test-suite/solvers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void Solver1DTest::testNewtonSafe() {
194194
}
195195

196196
void Solver1DTest::testFiniteDifferenceNewtonSafe() {
197-
BOOST_TEST_MESSAGE("Testing Finite Difference Newton-safe solver...");
197+
BOOST_TEST_MESSAGE("Testing finite-difference Newton-safe solver...");
198198
test_solver(FiniteDifferenceNewtonSafe(), "FiniteDifferenceNewtonSafe", Null<Real>());
199199
}
200200

0 commit comments

Comments
 (0)