mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Remove unused test report stubs
This commit is contained in:
parent
c3d2ba06c6
commit
4aefa50087
@ -1,39 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace SilverStripe\Reports\Tests;
|
|
||||||
|
|
||||||
use SilverStripe\ORM\DataObject;
|
|
||||||
use SilverStripe\ORM\CMSPreviewable;
|
|
||||||
use SilverStripe\Dev\TestOnly;
|
|
||||||
use SilverStripe\Control\Controller;
|
|
||||||
|
|
||||||
class ReportTest_FakeObject extends DataObject implements CMSPreviewable, TestOnly
|
|
||||||
{
|
|
||||||
|
|
||||||
private static $db = array(
|
|
||||||
'Title' => 'Varchar'
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return String Absolute URL to the end-user view for this record.
|
|
||||||
* Example: http://mysite.com/my-record
|
|
||||||
*/
|
|
||||||
public function Link()
|
|
||||||
{
|
|
||||||
return Controller::join_links('dummy-link', $this->ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function CMSEditLink()
|
|
||||||
{
|
|
||||||
return Controller::join_links('dummy-edit-link', $this->ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function PreviewLink($action = null)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getMimeType()
|
|
||||||
{
|
|
||||||
return 'text/html';
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace SilverStripe\Reports\Tests;
|
|
||||||
|
|
||||||
use SilverStripe\Dev\TestOnly;
|
|
||||||
use SilverStripe\ORM\ArrayList;
|
|
||||||
use SilverStripe\Reports\Report;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @package reports
|
|
||||||
* @subpackage tests
|
|
||||||
*/
|
|
||||||
class ReportTest_FakeTest extends Report implements TestOnly
|
|
||||||
{
|
|
||||||
public function title()
|
|
||||||
{
|
|
||||||
return 'Report title';
|
|
||||||
}
|
|
||||||
public function columns()
|
|
||||||
{
|
|
||||||
return array(
|
|
||||||
"Title" => array(
|
|
||||||
"title" => "Page Title",
|
|
||||||
"link" => true,
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
public function sourceRecords($params, $sort, $limit)
|
|
||||||
{
|
|
||||||
return new ArrayList();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function sort()
|
|
||||||
{
|
|
||||||
return 100;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace SilverStripe\Reports\Tests;
|
|
||||||
|
|
||||||
use SilverStripe\Dev\TestOnly;
|
|
||||||
use SilverStripe\ORM\ArrayList;
|
|
||||||
use SilverStripe\Reports\Report;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @package reports
|
|
||||||
* @subpackage tests
|
|
||||||
*/
|
|
||||||
class ReportTest_FakeTest2 extends Report implements TestOnly
|
|
||||||
{
|
|
||||||
public function title()
|
|
||||||
{
|
|
||||||
return 'Report title 2';
|
|
||||||
}
|
|
||||||
public function columns()
|
|
||||||
{
|
|
||||||
return array(
|
|
||||||
"Title" => array(
|
|
||||||
"title" => "Page Title 2"
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
public function sourceRecords($params, $sort, $limit)
|
|
||||||
{
|
|
||||||
return new ArrayList();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function sort()
|
|
||||||
{
|
|
||||||
return 98;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace SilverStripe\Reports\Tests;
|
|
||||||
|
|
||||||
use SilverStripe\Dev\TestOnly;
|
|
||||||
use SilverStripe\ORM\ArrayList;
|
|
||||||
use SilverStripe\Reports\Report;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @package reports
|
|
||||||
* @subpackage tests
|
|
||||||
*/
|
|
||||||
abstract class ReportTest_FakeTest_Abstract extends Report implements TestOnly
|
|
||||||
{
|
|
||||||
|
|
||||||
public function title()
|
|
||||||
{
|
|
||||||
return 'Report title Abstract';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function columns()
|
|
||||||
{
|
|
||||||
return array(
|
|
||||||
"Title" => array(
|
|
||||||
"title" => "Page Title Abstract"
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
public function sourceRecords($params, $sort, $limit)
|
|
||||||
{
|
|
||||||
return new ArrayList();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function sort()
|
|
||||||
{
|
|
||||||
return 5;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user