com.pkware.truth.android.playservices.maps.UiSettingsSubject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truth-android-play-services Show documentation
Show all versions of truth-android-play-services Show documentation
A set of Truth subjects geared toward testing Android.
/*
* Copyright 2013 Square, Inc.
* Copyright 2016 PKWARE, Inc.
*
* 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 com.pkware.truth.android.playservices.maps;
import com.google.android.gms.maps.UiSettings;
import com.google.common.truth.FailureMetadata;
import com.google.common.truth.Subject;
import static com.google.common.truth.Truth.assertThat;
/**
* Propositions for {@link UiSettings} subjects.
*/
public class UiSettingsSubject extends Subject {
protected UiSettingsSubject(FailureMetadata failureMetadata, UiSettings subject) {
super(failureMetadata, subject);
}
public static Subject.Factory type() {
return new Subject.Factory() {
@Override
public UiSettingsSubject createSubject(FailureMetadata fm, UiSettings that) {
return new UiSettingsSubject(fm, that);
}
};
}
public UiSettingsSubject hasCompassEnabled() {
assertThat(actual().isCompassEnabled())
.named("is compass enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasCompassDisabled() {
assertThat(!actual().isCompassEnabled())
.named("is compass disabled")
.isTrue();
return this;
}
public UiSettingsSubject hasIndoorLevelPickerEnabled() {
assertThat(actual().isIndoorLevelPickerEnabled())
.named("is indoor level picker enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasIndoorLevelPickerDisabled() {
assertThat(!actual().isIndoorLevelPickerEnabled())
.named("is indoor level picker disabled")
.isTrue();
return this;
}
public UiSettingsSubject hasMyLocationButtonEnabled() {
assertThat(actual().isMyLocationButtonEnabled())
.named("is 'my location' button enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasMyLocationButtonDisabled() {
assertThat(!actual().isMyLocationButtonEnabled())
.named("is 'my location' button disabled")
.isTrue();
return this;
}
public UiSettingsSubject hasRotateGesturesEnabled() {
assertThat(actual().isRotateGesturesEnabled())
.named("is rotate gesture enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasRotateGesturesDisabled() {
assertThat(!actual().isRotateGesturesEnabled())
.named("is rotate gesture disabled")
.isTrue();
return this;
}
public UiSettingsSubject hasScrollGesturesEnabled() {
assertThat(actual().isScrollGesturesEnabled())
.named("is scroll gesture enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasScrollGesturesDisabled() {
assertThat(!actual().isScrollGesturesEnabled())
.named("is scroll gesture enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasTiltGesturesEnabled() {
assertThat(actual().isTiltGesturesEnabled())
.named("is tilt gesture enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasTiltGesturesDisabled() {
assertThat(!actual().isTiltGesturesEnabled())
.named("is tilt gesture disabled")
.isTrue();
return this;
}
public UiSettingsSubject hasZoomControlsEnabled() {
assertThat(actual().isZoomControlsEnabled())
.named("zoom controls are enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasZoomControlsDisabled() {
assertThat(!actual().isZoomControlsEnabled())
.named("zoom controls are disabled")
.isTrue();
return this;
}
public UiSettingsSubject hasZoomGesturesEnabled() {
assertThat(actual().isZoomGesturesEnabled())
.named("is zoom gesture enabled")
.isTrue();
return this;
}
public UiSettingsSubject hasZoomGesturesDisabled() {
assertThat(!actual().isZoomGesturesEnabled())
.named("is zoom gesture enabled")
.isTrue();
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy