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

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

            CoverallsAssert.RanSuccessfully(results);
            ContainsStandardUsageText(results);
        }
        public void ReportWithOneFile_MultipleMode_RunsSuccessfully()
        {
            var coverageFilePath = BuildReportWithOneFile();

            var results = DryRunCoverallsMultiModeWithInputFile(coverageFilePath);

            CoverallsAssert.RanSuccessfully(results);
        }