for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPKitchen\Platform\Specs\Unit\Collection;
use PHPKitchen\Platform\Collection\Map;
use PHPKitchen\Platform\Specs\Base\Spec;
/**
* Specification for {@link Map}
*
* @author Dmitry Kolodko <[email protected]>
*/
class MapSpec extends Spec {
* @test
public function constructorBehavior() {
$map = Map::from([]);
$this->tester->seeBool($map->isNull())
->isFalse();
}