CSMSL.Tests.Proteomics.PeptideTestFixture.EmptyStringPeptideConstructorLength C# (CSharp) Method

EmptyStringPeptideConstructorLength() private method

private EmptyStringPeptideConstructorLength ( ) : void
return void
        public void EmptyStringPeptideConstructorLength()
        {
            Peptide peptide = new Peptide();

            Assert.AreEqual(0, peptide.Length);
        }
PeptideTestFixture