Exemplo n.º 1
0
        public void NullableStringTest_WhenNoValue()
        {
            var record = new NullableStringRecord();

            record.Id.Should().BeNull();
        }
Exemplo n.º 2
0
        public void NullableStringTest_WhenHasValue()
        {
            var record = new NullableStringRecord("5");

            record.Id.Should().Be("5");
        }