
io.github.ascopes.jct.assertions.ClassLoaderAssert Maven / Gradle / Ivy
/*
* Copyright (C) 2022 - 2024, the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.github.ascopes.jct.assertions;
import org.assertj.core.api.AbstractAssert;
import org.jspecify.annotations.Nullable;
/**
* Assertions to perform on a classloader.
*
* This type is a placeholder and will be replaced when AssertJ releases changes to
* support assertions on classloaders.
*
* @author Ashley Scopes
* @since 0.0.1
*/
public final class ClassLoaderAssert extends AbstractAssert {
/**
* Initialize a new assertions object.
*
* @param actual the class loader to assert upon.
*/
@SuppressWarnings("DataFlowIssue")
public ClassLoaderAssert(@Nullable ClassLoader actual) {
super(actual, ClassLoaderAssert.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy