Asserts that a variable and an attribute of an object do not have the same type and value.
mixed $expected:
string $actualAttributeName:
object $actualClassOrObject:
string $message:
public static function assertAttributeNotSame($expected, $actualAttributeName, $actualClassOrObject, $message = '') {
self::assertNotSame($expected, self::readAttribute($actualClassOrObject, $actualAttributeName), $message);
}