package org.apache.maven.surefire.junit4; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import java.util.ArrayList; import java.util.List; import java.util.concurrent.atomic.AtomicInteger; import org.apache.maven.surefire.report.ReportEntry; import org.apache.maven.surefire.report.RunListener; import org.apache.maven.surefire.report.TestSetReportEntry; /** * Internal tests use only. */ public class MockReporter implements RunListener { private final List<String> events = new ArrayList<String>(); public static final String SET_STARTED = "SET_STARTED"; public static final String SET_COMPLETED = "SET_COMPLETED"; public static final String TEST_STARTED = "TEST_STARTED"; public static final String TEST_COMPLETED = "TEST_COMPLETED"; public static final String TEST_SKIPPED = "TEST_SKIPPED"; private final AtomicInteger testSucceeded = new AtomicInteger(); private final AtomicInteger testIgnored = new AtomicInteger(); private final AtomicInteger testFailed = new AtomicInteger(); private final AtomicInteger testError = new AtomicInteger(); public MockReporter() { } @Override public void testSetStarting( TestSetReportEntry report ) { events.add( SET_STARTED ); } @Override public void testSetCompleted( TestSetReportEntry report ) { events.add( SET_COMPLETED ); } @Override public void testStarting( ReportEntry report ) { events.add( TEST_STARTED ); } @Override public void testSucceeded( ReportEntry report ) { events.add( TEST_COMPLETED ); testSucceeded.incrementAndGet(); } @Override public void testSkipped( ReportEntry report ) { events.add( TEST_SKIPPED ); testIgnored.incrementAndGet(); } @Override public void testExecutionSkippedByUser() { } public void testSkippedByUser( ReportEntry report ) { testSkipped( report ); } public int getTestSucceeded() { return testSucceeded.get(); } public int getTestFailed() { return testFailed.get(); } @Override public void testError( ReportEntry report ) { testError.incrementAndGet(); } @Override public void testFailed( ReportEntry report ) { testFailed.incrementAndGet(); } @Override public void testAssumptionFailure( ReportEntry report ) { } }