コード例 #1
0
        public void ShouldHaveCorrectToString()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
コード例 #2
0
        public void PrehistoricPBJToStringShouldGiveName()
        {
            PrehistoricPBJ pbj = new PrehistoricPBJ();

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
コード例 #3
0
        public void PrehistoricPBJShouldHaveCorrectDescription()
        {
            PrehistoricPBJ dr = new PrehistoricPBJ();

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

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

            Assert.Equal("Prehistoric PB&J", pbj.ToString());
        }
コード例 #6
0
        public void PrehistoricPBJShouldUpdateComponents()
        {
            PrehistoricPBJ dr = new PrehistoricPBJ();

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

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