private bool NotMatchWrongActivateCall(ActivatableItem item) { item.Activate("foo"); return item.name.StartsWith("foo"); }
private bool MatchActivateableCall(ActivatableItem item) { item.Activate(ActivationPurpose.Read); return item.name.StartsWith("foo"); }
bool NotMatchWrongActivateCall(ActivatableItem item) { item.Activate("foo"); return(item.name.StartsWith("foo")); }
public void ActivateParentForRead() { parent.Activate(ActivationPurpose.Read); }
bool MatchActivateableCall(ActivatableItem item) { item.Activate(ActivationPurpose.Read); return(item.name.StartsWith("foo")); }