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

            // ACT
            IRootInteractiveitems entity = TestRootInteractiveitems();

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

            // ACT
            IRootInteractiveitems entity = TestRootInteractiveitems();

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

            // ACT
            IRootInteractiveitems entity = TestRootInteractiveitems();

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