Stub out new tests
This commit is contained in:
parent
bd9c794d96
commit
22b70033c5
2 changed files with 48 additions and 177 deletions
48
tests/TalksBundle/TwigExtension/TalksExtensionTest.php
Normal file
48
tests/TalksBundle/TwigExtension/TalksExtensionTest.php
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\FormatTalksBundle\TwigExtension;
|
||||
|
||||
use DateTime;
|
||||
use TalksBundle\TwigExtension\TalksExtension;
|
||||
use Illuminate\Support\Collection;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class TalksExtensionTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var TalksExtension
|
||||
*/
|
||||
private $extension;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp()
|
||||
{
|
||||
$this->extension = new TalksExtension();
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function talks_given_multiple_times_are_only_returned_once()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function talks_are_ordered_by_the_most_recent_event_date()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function only_past_events_can_be_retrieved()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function only_future_events_can_be_retrieved()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue