我將如何進行單元測試的接口,如下面這個簡單的例子:測試驅動開發和接口
interface My_App_My_Interface
{
/**
* @return int
*/
public function getInteger();
/**
* @return string
*/
public function getString();
}
還怎麼會變成這樣在我的應用程序測試的目錄組織:
tests > My > App > My > InterfaceTest
?
你想測試這個接口怎麼樣? – deceze