Krucas\LaravelUserEmailVerification\Test\VerifiesUsersTest::testShowResendForm PHP Method

testShowResendForm() public method

public testShowResendForm ( )
    public function testShowResendForm()
    {
        $trait = $this->getTraitMock();
        $this->laravelContainer->shouldReceive('make')->with(Factory::class, [])->andReturn($view = $this->getViewMock());
        $view->shouldReceive('make')->with('verification::auth.verification.resend', [], [])->andReturn('view');
        $this->assertEquals('view', $trait->getResend());
    }