trait ApplicationTrait (View source)

Methods

$this
expectsEvents( array|mixed $events)

Specify a list of events that should be fired for the given operation.

$this
withSession( array $data)

Set the session to the given array.

void
session( array $data)

Set the session to the given array.

void
flushSession()

Flush all of the current session data.

$this
withoutMiddleware()

Disable middleware for the test.

$this
actingAs( Authenticatable $user, string|null $driver = null)

Set the currently logged in user for the application.

void
be( Authenticatable $user, string|null $driver = null)

Set the currently logged in user for the application.

void
seed( string $class = 'DatabaseSeeder')

Seed a given database connection.

int
artisan( string $command, array $parameters = array())

Call artisan command and return code.

Details

at line line 59
$this expectsEvents( array|mixed $events)

Specify a list of events that should be fired for the given operation.

These events will be mocked, so that handlers will not actually be executed.

Parameters

array|mixed $events

Return Value

$this

at line line 136
$this withSession( array $data)

Set the session to the given array.

Parameters

array $data

Return Value

$this

at line line 149
void session( array $data)

Set the session to the given array.

Parameters

array $data

Return Value

void

at line line 175
void flushSession()

Flush all of the current session data.

Return Value

void

at line line 187
$this withoutMiddleware()

Disable middleware for the test.

Return Value

$this

at line line 201
$this actingAs( Authenticatable $user, string|null $driver = null)

Set the currently logged in user for the application.

Parameters

Authenticatable $user
string|null $driver

Return Value

$this

at line line 215
void be( Authenticatable $user, string|null $driver = null)

Set the currently logged in user for the application.

Parameters

Authenticatable $user
string|null $driver

Return Value

void

at line line 298
void seed( string $class = 'DatabaseSeeder')

Seed a given database connection.

Parameters

string $class

Return Value

void

at line line 310
int artisan( string $command, array $parameters = array())

Call artisan command and return code.

Parameters

string $command
array $parameters

Return Value

int