ss = new Sugar_Smarty(); $view->display(); $this->expectOutputNotRegex('/ext_rest_insideview/', 'Failed to asssert that InsideView text does not appear'); } public function testEnableConnectors() { require_once('modules/Connectors/views/view.modifydisplay.php'); $view = new ViewModifyDisplay(null, null); $view->ss = new Sugar_Smarty(); $view->display(); $this->expectOutputRegex('/ext_rest_insideview/', 'Failed to asssert that InsideView text does not appear'); } public function testConnectorProperties() { require_once('modules/Connectors/views/view.modifyproperties.php'); $view = new ViewModifyProperties(null, null); $view->ss = new Sugar_Smarty(); $view->display(); $this->expectOutputNotRegex('/ext_rest_insideview/', 'Failed to asssert that InsideView text does not appear'); } public function testConnectorSearchProperties() { require_once('modules/Connectors/views/view.modifysearch.php'); $view = new ViewModifySearch(null, null); $view->ss = new Sugar_Smarty(); $view->display(); $this->expectOutputNotRegex('/ext_rest_insideview/', 'Failed to asssert that InsideView text does not appear'); } }