public void Identify_Value_with_StringValue() { var sut = new NZazuKeyedOptionsField(new FieldDefinition { Key = "test", Description = "description" }, ServiceLocator); sut.Value.Should().BeNull(); sut.GetValue().Should().Be(sut.Value); sut.SetValue("1"); sut.Value.Should().Be(sut.GetValue()); sut.Value = "2"; sut.GetValue().Should().Be(sut.Value); }