assertStringNotMatchesFormatFile() public static method

Asserts that a string does not match a given format string.
public static assertStringNotMatchesFormatFile ( string $formatFile, string $string, string $message = '' )
$formatFile string
$string string
$message string
Example #1
0
/**
 * Asserts that a string does not match a given format string.
 *
 * @param  string $formatFile
 * @param  string $string
 * @param  string $message
 * @since  Method available since Release 3.5.0
 */
function assertStringNotMatchesFormatFile($formatFile, $string, $message = '')
{
    return PHPUnit_Framework_Assert::assertStringNotMatchesFormatFile($formatFile, $string, $message);
}
Example #2
0
 public function doesNotMatchFormatFromFile($formatFile)
 {
     Assert::assertStringNotMatchesFormatFile($formatFile, $this->actual, $this->description);
     return $this;
 }
Example #3
0
 /**
  * Expect that a string does not match a given format string.
  *
  * @param string $formatFile
  * @param string $message
  *
  * @return Expect
  */
 public function notToMatchFormatFile($formatFile, $message = '')
 {
     Assert::assertStringNotMatchesFormatFile($formatFile, $this->value, $message);
     return $this;
 }
Example #4
0
 public function notMatchesFormatFile($formatFile)
 {
     a::assertStringNotMatchesFormatFile($formatFile, $this->actual, $this->description);
 }
Example #5
0
 /**
  * Asserts that a string does not match a given format string.
  *
  * @param $formatFile
  * @param $string
  * @param string $message
  */
 public function assertStringNotMatchesVfsFormatFile($formatFile, $string, $message = '')
 {
     PHPUnit::assertStringNotMatchesFormatFile($this->getPath($formatFile), $string, $message);
 }