org.assertj.android.api.graphics.PathAssert 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!
// Copyright 2013 Square, Inc.
package org.assertj.android.api.graphics;
import android.graphics.Path;
import org.assertj.core.api.AbstractAssert;
import static org.assertj.core.api.Assertions.assertThat;
/** Assertions for {@link Path} instances. */
public class PathAssert extends AbstractAssert {
public PathAssert(Path actual) {
super(actual, PathAssert.class);
}
public PathAssert hasFillType(Path.FillType type) {
isNotNull();
Path.FillType actualType = actual.getFillType();
assertThat(actualType) //
.overridingErrorMessage("Expected fill type <%s> but was <%s>.", type, actualType) //
.isEqualTo(type);
return this;
}
public PathAssert isEmpty() {
isNotNull();
assertThat(actual.isEmpty()) //
.overridingErrorMessage("Expected to be empty but was not.") //
.isTrue();
return this;
}
public PathAssert isNotEmpty() {
isNotNull();
assertThat(actual.isEmpty()) //
.overridingErrorMessage("Expected to not be empty but was.") //
.isFalse();
return this;
}
}