All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.runners.util.FailureDetector Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.runners.util;

import org.junit.runner.notification.Failure;
import org.junit.runner.notification.RunListener;

/**
 * Implementation of JUnit run listener that knows when any of the tests failed
 */
public class FailureDetector extends RunListener {

    private boolean failed;

    @Override
    public void testFailure(Failure failure) throws Exception {
        super.testFailure(failure);
        failed = true;
    }

    public boolean isSuccessful() {
        return !failed;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy