Exemplo n.º 1
0
        public void ShouldHaveCorrectToString()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

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

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

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

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
Exemplo n.º 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());
        }
Exemplo n.º 7
0
        public void CorrectDescription()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

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