CSMSL.Tests.Proteomics.PeptideTestFixture.ParseSequenceWithSpacesEverywhere C# (CSharp) 메소드

ParseSequenceWithSpacesEverywhere() 개인적인 메소드

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

            Assert.AreEqual(peptide1, peptide2);
        }
PeptideTestFixture