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

            // ACT
            IRootEntityAttributeProp entity = TestRootEntityAttributeProp();

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

            // ACT
            IRootEntityAttributeProp entity = TestRootEntityAttributeProp();

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

            // ACT
            IRootEntityAttributeProp entity = TestRootEntityAttributeProp();

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