Example #1
0
        public void ArchivesSuccessfully()
        {
            //Arrange
            bool expected = true;
            //Act
            bool actual = archivingManager.ArchiveLogs();

            //return to normal after actual is set
            archivingManager.ReverseArchive(archivingService.GetCurrentDate());
            //Assert
            Assert.AreEqual(expected, actual);
        }