com.fitbur.assertj.internal.Characters Maven / Gradle / Ivy
/**
* 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.
*
* Copyright 2012-2016 the original author or authors.
*/
package com.fitbur.assertj.internal;
import static java.lang.Character.*;
import static com.fitbur.assertj.error.ShouldBeLowerCase.shouldBeLowerCase;
import static com.fitbur.assertj.error.ShouldBeUpperCase.shouldBeUpperCase;
import com.fitbur.assertj.api.AssertionInfo;
import com.fitbur.assertj.util.VisibleForTesting;
/**
* Reusable assertions for {@link Character}
s.
*
* @author Alex Ruiz
* @author Joel Costigliola
*/
public class Characters extends Comparables {
private static final Characters INSTANCE = new Characters();
/**
* Returns the singleton instance of this class.
* @return the singleton instance of this class.
*/
public static Characters instance() {
return INSTANCE;
}
@VisibleForTesting
Characters() {
super();
}
public Characters(ComparisonStrategy comparisonStrategy) {
super(comparisonStrategy);
}
/**
* Asserts that the actual value is a lowercase character.
* @param info contains information about the assertion.
* @param actual the actual value.
* @throws AssertionError if the actual value is {@code null}.
* @throws AssertionError if the actual value is not a lowercase character.
*/
public void assertLowerCase(AssertionInfo info, Character actual) {
assertNotNull(info, actual);
if (isLowerCase(actual)) return;
throw failures.failure(info, shouldBeLowerCase(actual));
}
/**
* Asserts that the actual value is a uppercase character.
* @param info contains information about the assertion.
* @param actual the actual value.
* @throws AssertionError if the actual value is {@code null}.
* @throws AssertionError if the actual value is not a uppercase character.
*/
public void assertUpperCase(AssertionInfo info, Character actual) {
assertNotNull(info, actual);
if (isUpperCase(actual)) return;
throw failures.failure(info, shouldBeUpperCase(actual));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy