public void LoadRepository_WorkingCopy_IsValid()
        {
            // Arrange
            SvnManager.BuildUnitTestRepo(MainViewModel.LocalWorkingLocation, UnitTestFolder);
            // Act
            var isWorkingCopy = SvnManager.IsWorkingCopy(SvnManager.GetRoot(UnitTestPath));

            // Assert
            isWorkingCopy.Should().BeTrue();
        }
        public void SvnManagement_Checkout_IsValid()
        {
            // Arrange
            bool assertVal = false;

            SvnManager.BuildUnitTestRepo(MainViewModel.LocalWorkingLocation, UnitTestFolder);

            // Act

            if (SvnManager.CheckOut(UnitTestPath))
            {
                SvnManager.LoadCurrentSvnItemsInLocalRepository(UnitTestPath);
                assertVal = true;
            }


            // Assert
            assertVal.Should().BeTrue();
        }