blob: 0a0d43702a0817be5447427aabd0f114652f4f23 [file] [log] [blame]
/*
* Copyright 2015-2022 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.migrationsupport.rules;
import static org.junit.jupiter.migrationsupport.rules.FailAfterAllHelper.fail;
import org.junit.Rule;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.rules.Verifier;
@ExtendWith(ExternalResourceSupport.class)
public class WrongExtendWithForVerifierFieldTests {
private static boolean afterOfRule1WasExecuted = false;
@Rule
public Verifier verifier1 = new Verifier() {
@Override
protected void verify() {
afterOfRule1WasExecuted = true;
}
};
@Test
void testNothing() {
//needed to start the test process at all
}
@AfterAll
static void afterMethodOfRuleWasNotExecuted() {
if (afterOfRule1WasExecuted)
fail();
}
}