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

ParseSequenceWithSpaces() 개인적인 메소드

private ParseSequenceWithSpaces ( ) : void
리턴 void
        public void ParseSequenceWithSpaces()
        {
            Peptide peptide1 = new Peptide("TTGSSS SSS SK");
            Peptide peptide2 = new Peptide("TTGSSSSSSSK");

            Assert.AreEqual(peptide1, peptide2);
        }
PeptideTestFixture