1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/test/Loop/TracingDriverTest.php
Aaron Piotrowski 9f68bd4046
Remove Driver::run() and stop()
Added Driver::isRunning().

Driver now must be started and stopped through an instance of DriverControl.
2020-09-26 12:50:30 -05:00

27 lines
567 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\NativeDriver;
use Amp\Loop\TracingDriver;
class TracingDriverTest extends DriverTest
{
public function getFactory(): callable
{
return static function (): TracingDriver {
return new TracingDriver(new NativeDriver);
};
}
/**
* @dataProvider provideRegistrationArgs
* @group memoryleak
*/
public function testNoMemoryLeak(string $type, array $args): void
{
// Skip, because the driver intentionally leaks
$this->assertTrue(true);
}
}