/** * Asserts that a string matches a given format file. * * @param string $formatFile * @param string $string * @param string $message * @since Method available since Release 3.5.0 */ function assertStringMatchesFormatFile($formatFile, $string, $message = '') { return PHPUnit_Framework_Assert::assertStringMatchesFormatFile($formatFile, $string, $message); }
public function matchesFormatFromFile($formatFile) { Assert::assertStringMatchesFormatFile($formatFile, $this->actual, $this->description); return $this; }
/** * Expect that a string matches a given format file. * * @param string $formatFile * @param string $message * * @return Expect */ public function toMatchFormatFile($formatFile, $message = '') { Assert::assertStringMatchesFormatFile($formatFile, $this->value, $message); return $this; }
public function matchesFormatFile($formatFile) { a::assertStringMatchesFormatFile($formatFile, $this->actual, $this->description); }
/** * Asserts that a string matches a given format file. * * @param $formatFile * @param $string * @param string $message */ public function assertStringMatchesVfsFormatFile($formatFile, $string, $message = '') { PHPUnit::assertStringMatchesFormatFile($this->getPath($formatFile), $string, $message); }