Remove file
authorwidmogrod <widmogrod@gmail.com>
Mon, 11 Dec 2017 22:26:17 +0000 (23:26 +0100)
committerwidmogrod <widmogrod@gmail.com>
Mon, 11 Dec 2017 22:26:17 +0000 (23:26 +0100)
example/FreeDSLTest.php [deleted file]

diff --git a/example/FreeDSLTest.php b/example/FreeDSLTest.php
deleted file mode 100644 (file)
index 33a6ec1..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-<?php
-
-namespace example;
-
-interface ScenarioF
-{
-    //    public function map(callable $function): ScenarioF;
-}
-
-class Given implements ScenarioF
-{
-    public function __construct(string $desc, When $when)
-    {
-    }
-}
-
-class When implements ScenarioF
-{
-    public function __construct(string $desc, When $when)
-    {
-    }
-}
-
-class Then implements ScenarioF
-{
-    public function __construct(string $desc, When $when)
-    {
-    }
-}
-
-class Scenario
-{
-    public function when()
-    {
-    }
-
-    public function then()
-    {
-    }
-}
-
-function given(string $desc, $state): Scenario
-{
-}
-
-class FreeDSLTest extends \PHPUnit_Framework_TestCase
-{
-    public function test_it_should_interpret()
-    {
-    }
-}