Benim görüşüme göre, ben oluşturulmasını test etmek gerekir ve belirli bir kaynak yok Aşağıdaki senaryoyu alır.
Başlangıçta iki yöntem, bir vardı. testCreateResource b. testDestroyResource
a. testCreateResource
<?php
$app->createResource('resource');
$this->assertTrue($app->hasResource('resource'));
?>
b. testDestroyResource
<?php
$app->destroyResource('resource');
$this->assertFalse($app->hasResource('resource'));
?>
Ben testDestroyResource testCreateResource bağlıdır bu, kötü bir fikir olduğunu düşünüyorum. Ve daha iyi bir uygulama yapmak olacaktır
a. testCreateResource
<?php
$app->createResource('resource');
$this->assertTrue($app->hasResource('resource'));
$app->deleteResource('resource');
?>
b. testDestroyResource
<?php
$app->createResource('resource');
$app->destroyResource('resource');
$this->assertFalse($app->hasResource('resource'));
?>