You are here

function ExactValueTokenSpec::it_generates_proper_string_representation_for_empty_array in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/ExactValueTokenSpec.php \spec\Prophecy\Argument\Token\ExactValueTokenSpec::it_generates_proper_string_representation_for_empty_array()

File

vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/ExactValueTokenSpec.php, line 107

Class

ExactValueTokenSpec

Namespace

spec\Prophecy\Argument\Token

Code

function it_generates_proper_string_representation_for_empty_array() {
  $this
    ->beConstructedWith(array());
  $this
    ->__toString()
    ->shouldReturn('exact([])');
}