public void IsMatch() { var ch1 = new Channel.Path("some.path.*.hello"); var ch2 = new Channel.Path("some.path.aa.hello"); Assert.IsTrue( ch1.IsMatch(ch2)); }
public AutoResponse(Type type, String path) { this.type = type; this.path = new Channel.Path(path); }
public Leave(String path) { this.path = new Channel.Path(path); }
public Join(String path) { this.path = new Channel.Path(path); }