All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.test.ITestMetadata Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.test;

import java.util.Map;

/**
 * Metadata (e.g. annotation info) for a test method.
 */
public interface ITestMetadata {
  /**
   * @return The name of the test method.
   */
  String getName();

  /**
   * @return A map from attribute names to attribute values.
   */
  Map getAttributes();

  boolean shouldNotRunTest();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy