Beispiel #1
0
        public void FileCaptureTest()
        {
            string expectedFilePath = @"C:\Users\Stephen\Desktop\Duracell 8G\Impractical Jokers Season 3\Impractical jokers S03E26.mp4";

            string actual = IncidentCaptureStorage.VideoProcessing(sender, e);

            Assert.Equals(expectedFilePath, actual);
        }
Beispiel #2
0
        public void returnedResultsTest()
        {
            string expectedFilePath = @"C:\Users\Stephen\Desktop\Duracell 8G\Impractical Jokers Season 3\Impractical jokers S03E26.mp4";
            string actual           = IncidentCaptureStorage.returnedResults();

            Assert.AreNotEqual(expectedFilePath, actual);

            Console.WriteLine(expectedFilePath + actual);
        }