/* * Copyright 2013-present Facebook, 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.facebook.buck.test.selectors; import java.util.Objects; /** * A non-JUnit specific way of describing a test-method inside a test-class. This meants that the * test-selectors code does not need a dependency on JUnit. */ public class TestDescription { private final String className; private final String methodName; public TestDescription(String className, String methodName) { this.className = className; this.methodName = methodName; } public String getClassName() { return className; } public String getMethodName() { return methodName; } @Override public boolean equals(Object obj) { if (!(obj instanceof TestDescription)) { return false; } TestDescription other = (TestDescription) obj; return Objects.equals(this.className, other.className) && Objects.equals(this.methodName, other.methodName); } @Override public int hashCode() { return Objects.hash(this.className, this.methodName); } @Override public String toString() { return String.format("%s.%s", this.className, this.methodName); } }