You are here

public function Behavior::assert in Drupal 7

Parameters

string $path:

string $command:

Return value

bool

Overrides Assertable::assert

File

misc/typo3/phar-stream-wrapper/src/Behavior.php, line 67

Class

Behavior

Namespace

TYPO3\PharStreamWrapper

Code

public function assert($path, $command) {
  $this
    ->assertCommand($command);
  $this
    ->assertAssertionCompleteness();
  return $this->assertions[$command]
    ->assert($path, $command);
}