'DOC Export', 'description' => 'Various tests for exporting to DOC.', 'group' => 'Views Data Export', ); } protected $vde_export_type = 'DOC'; protected function getStylePluginName() { return 'views_data_export_doc'; } protected function getExportView($path = 'vde_test') { // Create the basic view. $view = $this->getBasicExportView(); $display = $view->new_display('views_data_export', 'Data export', 'vde_test'); $display->override_option('style_plugin', $this->getStylePluginName()); $display->override_option('path', $path); $expected = '
IDNameAge
1John25
2George27
3Ringo28
4Paul26
5Meredith30
'; return array(&$view, $expected); } }