org.assertj.android.api.os.BundleAssert 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.
// Copyright 2013 Square, Inc.
package org.assertj.android.api.os;
import android.os.Bundle;
import org.assertj.core.api.AbstractAssert;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link Bundle} instances. */
public class BundleAssert extends AbstractAssert {
public BundleAssert(Bundle actual) {
super(actual, BundleAssert.class);
}
public BundleAssert hasKey(String key) {
isNotNull();
assertThat(actual.containsKey(key)) //
.overridingErrorMessage("Expected to contain key <%s> but did not.", key) //
.isTrue();
return this;
}
public BundleAssert isEmpty() {
isNotNull();
assertThat(actual.isEmpty()) //
.overridingErrorMessage("Expected to be empty but was not.") //
.isTrue();
return this;
}
public BundleAssert isNotEmpty() {
isNotNull();
assertThat(actual.isEmpty()) //
.overridingErrorMessage("Expected to not be empty but was.") //
.isFalse();
return this;
}
public BundleAssert hasSize(int size) {
isNotNull();
int actualSize = actual.size();
assertThat(actualSize) //
.overridingErrorMessage("Expected size <%s> but was <%s>.", size, actualSize) //
.isEqualTo(size);
return this;
}
}