Exemplo n.º 1
0
        public void ToString_should_return_expected_result()
        {
            var subject = new WriteConcern.WCount(1);

            var result = subject.ToString();

            result.Should().Be("1");
        }
Exemplo n.º 2
0
        public void ToString_should_return_proper_value()
        {
            var wCount = new WriteConcern.WCount(1);

            wCount.ToString().Should().Be("1");
        }