1 | <?php |
||
18 | class RouteSpecificationTest extends TestCase |
||
19 | { |
||
20 | /** |
||
21 | * |
||
22 | * @var RouteSpecification |
||
23 | */ |
||
24 | protected $object; |
||
25 | |||
26 | protected function setUp() |
||
30 | |||
31 | /** |
||
32 | * @test |
||
33 | */ |
||
34 | public function it_has_an_origin() |
||
38 | |||
39 | /** |
||
40 | * @test |
||
41 | */ |
||
42 | public function it_has_a_destination() |
||
46 | |||
47 | /** |
||
48 | * @test |
||
49 | */ |
||
50 | public function it_is_same_value_as_route_specification_with_same_properties() |
||
56 | |||
57 | /** |
||
58 | * @test |
||
59 | */ |
||
60 | public function it_is_not_same_value_as_route_specification_with_different_origin() |
||
66 | |||
67 | /** |
||
68 | * @test |
||
69 | */ |
||
70 | public function it_is_not_same_value_as_route_specification_with_different_destination() |
||
76 | } |
||
77 |