public void ShouldHaveCorrectToString()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
        public void PrehistoricPBJToStringShouldGiveName()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
        public void PrehistoricPBJShouldHaveCorrectDescription()
        {
            PrehistoricPBJ dr = new PrehistoricPBJ();

            Assert.Equal(dr.Description, dr.ToString());
        }
Exemple #4
0
        public void PrehistoricPBJDescription()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
Exemple #5
0
        public void CorrectDefaultToString()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
        public void PrehistoricPBJShouldUpdateComponents()
        {
            PrehistoricPBJ dr = new PrehistoricPBJ();

            Assert.Equal(dr.Description, dr.ToString());
        }
Exemple #7
0
        public void CorrectDescription()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal(pbj.ToString(), pbj.Description);
        }