예제 #1
0
        public void EmptyReport_MultipleMode_RunsSuccessfully()
        {
            var emptyFilePath = Path.Combine(RepositoryPaths.GetSamplesPath(), "OpenCover", "EmptyReport.xml");
            var results       = DryRunCoverallsMultiModeWithInputFile(emptyFilePath);

            CoverallsAssert.RanSuccessfully(results);
        }
예제 #2
0
        public void HelpShortHand()
        {
            var results = CoverallsTestRunner.RunCoveralls("-h");

            CoverallsAssert.RanSuccessfully(results);
            ContainsStandardUsageText(results);
        }
예제 #3
0
        public void ReportWithOneFile_MultipleMode_RunsSuccessfully()
        {
            var coverageFilePath = BuildReportWithOneFile();

            var results = DryRunCoverallsMultiModeWithInputFile(coverageFilePath);

            CoverallsAssert.RanSuccessfully(results);
        }