我将如何对接口进行单元测试,例如以下简单示例:
interface My_App_My_Interface
{
/**
* @return int
*/
public function getInteger();
/**
* @return string
*/
public function getString();
}
还有这将如何在我的应用程序测试目录中组织:
tests > My > App > My > InterfaceTest
??