AMLSim
/
jars
/junit5-r5.10.2
/documentation
/src
/test
/java
/example
/timing
/TimingExtensionTests.java
/* | |
* Copyright 2015-2023 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 example.timing; | |
import org.junit.jupiter.api.Test; | |
import org.junit.jupiter.api.extension.ExtendWith; | |
/** | |
* Tests that demonstrate the example {@link TimingExtension}. | |
* | |
* @since 5.0 | |
*/ | |
// tag::user_guide[] | |
class TimingExtensionTests { | |
void sleep20ms() throws Exception { | |
Thread.sleep(20); | |
} | |
void sleep50ms() throws Exception { | |
Thread.sleep(50); | |
} | |
} | |
// end::user_guide[] | |