1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/test/Loop/TracingDriverTest.php

27 lines
533 B
PHP
Raw Normal View History

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