Line data Source code
1 : // Copyright (C) 2019 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.git.testing; 16 : 17 : import static com.google.common.truth.Truth.assertAbout; 18 : 19 : import com.google.common.truth.FailureMetadata; 20 : import com.google.common.truth.Subject; 21 : import org.eclipse.jgit.lib.ObjectId; 22 : 23 : public class ObjectIdSubject extends Subject { 24 : public static ObjectIdSubject assertThat(ObjectId objectId) { 25 0 : return assertAbout(objectIds()).that(objectId); 26 : } 27 : 28 : public static Factory<ObjectIdSubject, ObjectId> objectIds() { 29 0 : return ObjectIdSubject::new; 30 : } 31 : 32 : private final ObjectId objectId; 33 : 34 : private ObjectIdSubject(FailureMetadata metadata, ObjectId objectId) { 35 0 : super(metadata, objectId); 36 0 : this.objectId = objectId; 37 0 : } 38 : 39 : public void hasName(String expectedName) { 40 0 : isNotNull(); 41 0 : check("getName()").that(objectId.getName()).isEqualTo(expectedName); 42 0 : } 43 : }