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

ParseSequenceWithSpaces() private method

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

            Assert.AreEqual(peptide1, peptide2);
        }
PeptideTestFixture