public void MatchWithAnotherAtom() { Atom atom = new Atom("one"); Atom atom2 = new Atom("two"); Assert.IsFalse(atom.Match(atom2)); }
public void MatchWithNull() { Atom atom = new Atom("one"); Assert.IsFalse(atom.Match(null)); }