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

ParseSequenceWithSpacesEverywhere() private method

private ParseSequenceWithSpacesEverywhere ( ) : void
return void
        public void ParseSequenceWithSpacesEverywhere()
        {
            Peptide peptide1 = new Peptide("   TTGS  SSSS  SSK   ");
            Peptide peptide2 = new Peptide("TTGSSSSSSSK");

            Assert.AreEqual(peptide1, peptide2);
        }
PeptideTestFixture