@@ -188,14 +188,6 @@ public function setConsumption(string $type, int $amount, string $unit, string $
188
188
$ this ->builder ->setConsumption ($ type , $ amount , $ unit , $ target , $ time );
189
189
}
190
190
191
- /**
192
- * @Given /recalculate autotariff for target (\S+)( +at (\S+))?$/
193
- */
194
- public function recalculateAutoTariff (string $ target , string $ time = null ): void
195
- {
196
- $ this ->builder ->clientSetAutoTariff ($ target , $ time );
197
- }
198
-
199
191
/**
200
192
* @Given /perform billing at (\S+)/
201
193
*/
@@ -239,14 +231,14 @@ public function billWithTime($type, $sum, $currency, $quantity, $unit, $target,
239
231
'quantity ' => "$ quantity $ unit " ,
240
232
'time ' => $ time ,
241
233
]);
242
- Assert::assertSame ($ type , $ bill ->getType ()->getName (), " Bill type mismatch: expected $ type , got { $ bill -> getType ()-> getName ()}" );
243
- Assert::assertSame ($ target , $ bill ->getTarget ()->getFullName (), " Bill target mismatch: expected $ target , got { $ bill -> getTarget ()-> getFullName ()}" );
244
- Assert::assertEquals (bcmul ($ sum , 100 ), $ bill ->getSum ()->getAmount (), " Bill sum mismatch: expected $ sum , got { $ bill -> getSum ()-> getAmount ()}" );
245
- Assert::assertSame ($ currency , $ bill ->getSum ()->getCurrency ()->getCode (), " Bill currency mismatch: expected $ currency , got { $ bill -> getSum ()-> getCurrency ()-> getCode ()}" );
246
- Assert::assertEquals ((float )$ quantity , (float )$ bill ->getQuantity ()->getQuantity (), " Bill quantity mismatch: expected $ quantity , got { $ bill -> getQuantity ()-> getQuantity ()}" );
247
- Assert::assertEquals (strtolower ($ unit ), strtolower ($ bill ->getQuantity ()->getUnit ()->getName ()), " Bill unit mismatch: expected $ unit , got { $ bill -> getQuantity ()-> getUnit ()-> getName ()}" );
234
+ Assert::assertSame ($ type , $ bill ->getType ()->getName ());
235
+ Assert::assertSame ($ target , $ bill ->getTarget ()->getFullName ());
236
+ Assert::assertEquals (bcmul ($ sum , 100 ), $ bill ->getSum ()->getAmount ());
237
+ Assert::assertSame ($ currency , $ bill ->getSum ()->getCurrency ()->getCode ());
238
+ Assert::assertEquals ((float )$ quantity , (float )$ bill ->getQuantity ()->getQuantity ());
239
+ Assert::assertEquals (strtolower ($ unit ), strtolower ($ bill ->getQuantity ()->getUnit ()->getName ()));
248
240
if ($ time ) {
249
- Assert::assertEquals (new DateTimeImmutable ($ time ), $ bill ->getTime (), " Bill time mismatch: expected $ time , got { $ bill -> getTime ()-> format ( DATE_ATOM )}" );
241
+ Assert::assertEquals (new DateTimeImmutable ($ time ), $ bill ->getTime ());
250
242
}
251
243
}
252
244
@@ -345,10 +337,6 @@ protected function prepareTime(string $time = null)
345
337
if (strncmp ($ time , 'pY ' , 1 ) === 0 ) {
346
338
return date (substr ($ time , 1 ), strtotime ('-1 year ' ));
347
339
}
348
- if (str_contains ($ time , 'pm ' )) {
349
- $ time = str_replace ('pm ' , 'm ' , $ time );
350
- $ time = date ($ time , strtotime ('-1 month ' ));
351
- }
352
340
if (strncmp ($ time , 'Y ' , 1 ) === 0 ) {
353
341
return date ($ time );
354
342
}
0 commit comments