org.assertj.android.api.util.SparseArrayAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-android Show documentation
Show all versions of assertj-android Show documentation
A set of AssertJ assertion helpers geared toward testing Android.
The newest version!
package org.assertj.android.api.util;
import android.util.SparseArray;
import org.assertj.core.api.AbstractAssert;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link SparseArray} instances. */
public class SparseArrayAssert extends AbstractAssert, SparseArray> {
public SparseArrayAssert(SparseArray actual) {
super(actual, SparseArrayAssert.class);
}
public SparseArrayAssert hasKey(int key) {
isNotNull();
assertThat(actual.indexOfKey(key)) //
.overridingErrorMessage("Expected key <%s> to be present but was not.", key) //
.isGreaterThanOrEqualTo(0);
return this;
}
public SparseArrayAssert doesNotHaveKey(int key) {
isNotNull();
assertThat(actual.indexOfKey(key)) //
.overridingErrorMessage("Expected key <%s> to not be present but was.") //
.isLessThan(0);
return this;
}
public SparseArrayAssert hasSize(int size) {
isNotNull();
int actualSize = actual.size();
assertThat(actualSize) //
.overridingErrorMessage("Expected size <%s> but was <%s>.", size, actualSize) //
.isEqualTo(size);
return this;
}
}