for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DNADesign\ElementalList\Tests;
use DNADesign\ElementalList\Model\ElementList;
use SilverStripe\Dev\SapphireTest;
class ElementListTest extends SapphireTest
{
public function testGetRelations()
$list = ElementList::create();
$this->assertEquals(['Elements'], $list->getElementalRelations());
}
public function testGetCmsFields()
// todo
public function testForTemplate()