description() public method

Returns the description report.
public description ( )
Beispiel #1
0
                $foo::version();
            });
        });
    });
    describe("->description()", function () {
        it("returns the description message", function () {
            $stub = Stub::create();
            $matcher = new ToReceive($stub, 'method');
            $message = $matcher->message();
            expect($message)->toBeAnInstanceOf('Kahlan\\Plugin\\Call\\Message');
        });
        it("returns the description message for not received call", function () {
            $stub = Stub::create();
            $matcher = new ToReceive($stub, 'method');
            $matcher->resolve(['instance' => $matcher, 'params' => ['actual' => $stub, 'expected' => 'method', 'logs' => []]]);
            $actual = $matcher->description();
            expect($actual['description'])->toBe('receive the correct message.');
            expect($actual['params'])->toBe(['actual received' => ['__construct'], 'expected' => 'method']);
        });
        it("returns the description message for wrong passed arguments", function () {
            $stub = Stub::create();
            $matcher = new ToReceive($stub, 'method');
            $matcher->with('Hello World!');
            $stub->method('Good Bye!');
            $matcher->resolve(['instance' => $matcher, 'params' => ['actual' => $stub, 'expected' => 'method', 'logs' => []]]);
            $actual = $matcher->description();
            expect($actual['description'])->toBe('receive correct parameters.');
            expect($actual['params'])->toBe(['actual with' => ['Good Bye!'], 'expected with' => ['Hello World!']]);
        });
    });
});