Returns a specifier test initialized to evaluate a test object against an object specified by an object specifier using a given comparison operation.
Original signature is '- (id)initWithObjectSpecifier:(NSScriptObjectSpecifier *)obj1 comparisonOperator:(NSTestComparisonOperation)compOp testObject:(id)obj2'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public NSSpecifierTest( NSScriptObjectSpecifier obj1, NSTestComparisonOperation compOp, Id obj2 )
Public Sub New ( _ obj1 As NSScriptObjectSpecifier, _ compOp As NSTestComparisonOperation, _ obj2 As Id _ )
public: NSSpecifierTest( NSScriptObjectSpecifier^ obj1, NSTestComparisonOperation compOp, Id^ obj2 )

- obj1 (NSScriptObjectSpecifier)
- An object specifier.
- compOp (NSTestComparisonOperation)
- The comparison operation.
- obj2 (Id)
- The object against which to evaluate the object specified by obj1.

A specifier test initialized to evaluate (obj2) against an object specified by obj1 using the comparison operation compOp.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)