assertStringMatchesFormatFile() public static method

Asserts that a string matches a given format file.
public static assertStringMatchesFormatFile ( string $formatFile, string $string, string $message = '' )
$formatFile string
$string string
$message string
コード例 #1
0
ファイル: Functions.php プロジェクト: delkyd/sugarcrm_dev
/**
 * 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);
}
コード例 #2
0
ファイル: StringMatcher.php プロジェクト: dekeysoft/pu-tester
 public function matchesFormatFromFile($formatFile)
 {
     Assert::assertStringMatchesFormatFile($formatFile, $this->actual, $this->description);
     return $this;
 }
コード例 #3
0
ファイル: Expect.php プロジェクト: jpkleemans/phpunit-expect
 /**
  * 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;
 }
コード例 #4
0
ファイル: Verify.php プロジェクト: jaschweder/Verify
 public function matchesFormatFile($formatFile)
 {
     a::assertStringMatchesFormatFile($formatFile, $this->actual, $this->description);
 }
コード例 #5
0
ファイル: AssertionsTrait.php プロジェクト: newup/core
 /**
  * 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);
 }