com.asarkar.grpc.test.PostconditionViolationException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-test Show documentation
Show all versions of grpc-test Show documentation
JUnit5 Extension that can automatically release gRPC resources at the end of the test
package com.asarkar.grpc.test
import org.junit.platform.commons.JUnitException
/**
* Thrown if a [Resource] cannot be released.
*
* @author Abhijit Sarkar
* @since 1.0.0
*/
class PostconditionViolationException(message: String, cause: Throwable? = null) : JUnitException(message, cause)