Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
Completed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Schröder committed Mar 10, 2015
1 parent 4890917 commit 3a61405
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/src/Component/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ public function testQueryConstruction()

$this->assertFalse(isset($query['argument']));
$this->assertEquals(null, $query['argument']);

$query[] = 'value';
$this->assertEquals('value', $query[0]);

unset($query[0]);

$this->assertFalse(isset($query[0]));
$this->assertEquals(null, $query[0]);
}

/**
Expand Down

0 comments on commit 3a61405

Please sign in to comment.