Exemplo n.º 1
0
        public void Baseline()
        {
            var sut = new RepresentNasSumOf134();

            Assert.Equal(4, sut.Get(4));
            Assert.Equal(6, sut.Get(5));
        }
Exemplo n.º 2
0
        public void BelowBaseCase()
        {
            var sut = new RepresentNasSumOf134();

            Assert.Equal(1, sut.Get(1));
        }
Exemplo n.º 3
0
        public void SimpleRepresentation()
        {
            var sut = new RepresentNasSumOf134();

            Assert.Equal(2, sut.Get(3));
        }