Hi! I am wondering how to change the output of unit test. Currently when testing the output will be based on the function name.

This is really helpful, specially with long sentence,
this is my sample test function. My Goal here is to output something like this The Date is 2023-11-07 day to bill is 15 with a price of 50, expects output to be 13.15 instead of just outputing the function name cause dots cant be added in a function name, and commas.
public function testDayToDay2023_11_07DayToBillIs15PriceIs50($dayToBill = 15, $dayToday = '2023-11-07', $price =
50) {
// Getting the Pro Rata Charge
$proRataFrom = (new DateTime($dayToday))->format('Y-m-d');
$proRataTo = ProRataCalculator::calculateTheDateOfProRataTo($dayToBill, $proRataFrom);
$proRataCharge = AccountBalanceLedger::calculateFee(
$price,
$proRataFrom,
$proRataTo
);
$proRataCharge = (float)number_format($proRataCharge, 2, '.', '');
$this->assertTrue($proRataCharge == 13.15, 'Expected 13.15, got ' . $proRataCharge);
}