CSMSL.Tests.Chemistry.ChemicalFormulaTestFixture.ChemicalForulaIsNotSuperSet C# (CSharp) Method

ChemicalForulaIsNotSuperSet() private method

private ChemicalForulaIsNotSuperSet ( ) : void
return void
        public void ChemicalForulaIsNotSuperSet()
        {
            ChemicalFormula formulaA = new ChemicalFormula("C2H3NO2");
            ChemicalFormula formulaB = new ChemicalFormula("C3H3NO");

            Assert.IsFalse(formulaB.IsSuperSetOf(formulaA));
        }
ChemicalFormulaTestFixture