AjErl.Tests.Language.AtomTests.MatchWithAnotherAtom C# (CSharp) Method

MatchWithAnotherAtom() private method

private MatchWithAnotherAtom ( ) : void
return void
        public void MatchWithAnotherAtom()
        {
            Atom atom = new Atom("one");
            Atom atom2 = new Atom("two");

            Assert.IsFalse(atom.Match(atom2));
        }