org.assertj.core.api.AssertAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-testing-common Show documentation
Show all versions of opentelemetry-testing-common Show documentation
OpenTelemetry Javaagent testing commons
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.assertj.core.api;
public final class AssertAccess {
private AssertAccess() {}
public static ACTUAL getActual(AbstractAssert, ACTUAL> abstractAssert) {
return abstractAssert.actual;
}
}