Вход Регистрация
Файл: gapps/vendor/phpspec/prophecy/spec/Prophecy/ArgumentSpec.php
Строк: 237
<?php

namespace specProphecy;

use 
PhpSpecObjectBehavior;

class 
ArgumentSpec extends ObjectBehavior
{
    function 
it_has_a_shortcut_for_exact_argument_token()
    {
        
$token $this->exact(42);
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenExactValueToken');
        
$token->getValue()->shouldReturn(42);
    }

    function 
it_has_a_shortcut_for_any_argument_token()
    {
        
$token $this->any();
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenAnyValueToken');
    }

    function 
it_has_a_shortcut_for_multiple_arguments_token()
    {
        
$token $this->cetera();
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenAnyValuesToken');
    }

    function 
it_has_a_shortcut_for_type_token()
    {
        
$token $this->type('integer');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenTypeToken');
    }

    function 
it_has_a_shortcut_for_callback_token()
    {
        
$token $this->that('get_class');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenCallbackToken');
    }

    function 
it_has_a_shortcut_for_object_state_token()
    {
        
$token $this->which('getName''everzet');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenObjectStateToken');
    }

    function 
it_has_a_shortcut_for_logical_and_token()
    {
        
$token $this->allOf('integer'5);
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenLogicalAndToken');
    }

    function 
it_has_a_shortcut_for_array_count_token()
    {
        
$token $this->size(5);
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenArrayCountToken');
    }

    function 
it_has_a_shortcut_for_array_entry_token()
    {
        
$token $this->withEntry('key''value');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenArrayEntryToken');
    }

    function 
it_has_a_shortcut_for_array_every_entry_token()
    {
        
$token $this->withEveryEntry('value');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenArrayEveryEntryToken');
    }

    function 
it_has_a_shortcut_for_identical_value_token()
    {
        
$token $this->is('value');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenIdenticalValueToken');
    }

    function 
it_has_a_shortcut_for_array_entry_token_matching_any_key()
    {
        
$token $this->containing('value');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenArrayEntryToken');
        
$token->getKey()->shouldHaveType('ProphecyArgumentTokenAnyValueToken');
    }

    function 
it_has_a_shortcut_for_array_entry_token_matching_any_value()
    {
        
$token $this->withKey('key');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenArrayEntryToken');
        
$token->getValue()->shouldHaveType('ProphecyArgumentTokenAnyValueToken');
    }

    function 
it_has_a_shortcut_for_logical_not_token()
    {
        
$token $this->not('kagux');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenLogicalNotToken');
    }

    function 
it_has_a_shortcut_for_string_contains_token()
    {
        
$token $this->containingString('string');
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenStringContainsToken');
    }

    function 
it_has_a_shortcut_for_approximate_token()
    {
        
$token $this->approximate(10);
        
$token->shouldBeAnInstanceOf('ProphecyArgumentTokenApproximateValueToken');
    }
}
Онлайн: 0
Реклама