1
0
Fork 0
mirror of synced 2024-06-02 02:44:47 +12:00
appwrite/tests/extensions/TestHook.php

15 lines
283 B
PHP
Raw Normal View History

2021-03-22 03:26:05 +13:00
<?php
namespace Appwrite\Tests;
use PHPUnit\Runner\AfterTestHook;
class TestHook implements AfterTestHook
{
public function executeAfterTest(string $test, float $time): void
{
2021-03-22 03:27:37 +13:00
printf("\n%s ended in %s seconds",
2021-03-22 03:26:05 +13:00
$test,
$time
);
}
}