0
votes
2answers
51 views
In Objective-C, am I allowed to override a method in a subclass that the parent used to conform to a protocol?
Example is provided below. If I set
id<RandomProtocol> delegate = [[B alloc] init];
Will doingSomething of class A or class B be called?
A.h
@protocol RandomProtocol
-( …
2
votes
1answer
35 views
XPATH Conformance
I have an XPath engine implementation that needs to be tested.
Is there a set of standard conformance tests that we can apply to validate that conforms to the XPath specificatio …
