Tester\Assert::notSame PHP 메소드

notSame() 공개 정적인 메소드

Checks assertion. Values must not be exactly the same.
public static notSame ( $expected, $actual, $description = NULL ) : void
리턴 void
    public static function notSame($expected, $actual, $description = NULL)
    {
        self::$counter++;
        if ($actual === $expected) {
            self::fail(self::describe('%1 should not be %2', $description), $actual, $expected);
        }
    }