次の簡単な例のようなインターフェイスを単体テストするにはどうすればよいですか。
interface My_App_My_Interface
{
/**
* @return int
*/
public function getInteger();
/**
* @return string
*/
public function getString();
}
また、これは私のアプリケーションのテストディレクトリでどのように編成されますか:
tests > My > App > My > InterfaceTest
??