assert_equal("http://./themes/fake_theme/file", $theme->url("file")); } public function display_test() { $theme = new Theme("fake_theme"); $view = $theme->display("test_page", "Theme_Test_Mock_View"); $this->assert_equal("test_page", $view->page_name); } } class Theme_Test_Mock_View { public $page_name = null; public function __construct($page_name) { $this->page_name = $page_name; } }