public void XSRC_XsrcAttributeProperty_Value()
        {
            // ARRANGE
            // Use Test Helpers

            // ACT
            IXsrcAttributeProperty entity = TestXsrcAttributeProperty();

            // ASSERT
            entity.Value.Should().Be("Value");
        }
        public void XSRC_XsrcAttributeProperty_Exists()
        {
            // ARRANGE
            // Use Test Helpers

            // ACT
            IXsrcAttributeProperty entity = TestXsrcAttributeProperty();

            // ASSERT
            entity.Should().NotBeNull();
        }