org.seasar.framework.unit.impl
クラス AnnotationTestIntrospector

java.lang.Object
  上位を拡張 org.seasar.framework.unit.impl.AnnotationTestIntrospector
すべての実装されたインタフェース:
S2TestIntrospector
直系の既知のサブクラス:
ConventionTestIntrospector

public class AnnotationTestIntrospector
extends Object
implements S2TestIntrospector

アノテーションを解釈してテストクラスを分析するイントロスペクターです。

作成者:
taedium

フィールドの概要
protected  Class<? extends Annotation> afterAnnotation
          全テストケースに共通の解放メソッドに注釈可能なアノテーションクラス
protected  Class<? extends Annotation> afterClassAnnotation
          テストクラスの解放メソッドに注釈可能なアノテーションクラス
protected  Class<? extends Annotation> beforeAnnotation
          全テストケースに共通の初期化メソッドに注釈可能なアノテーションクラス
protected  Class<? extends Annotation> beforeClassAnnotation
          テストクラスの初期化メソッドに注釈可能なアノテーションクラス
protected  boolean enableIgnore
          テストケースを無視する処理が有効かどうかを表すフラグ。
protected  boolean enablePrerequisite
          テストケースの事前条件チェック処理が有効かどうかを表すフラグ。
 
コンストラクタの概要
AnnotationTestIntrospector()
           
 
メソッドの概要
protected  Expression createExpression(String source, Method method, Object test)
          式を作成します。
 void createMock(Method method, Object test, InternalTestContext context)
          MockInterceptorを利用したモックを作成します。
protected  void createMock(Mock mock, Method method, Object test, InternalTestContext context)
          mockからモックインターセプターを作成し、contextに登録します。
 Class<? extends Throwable> expectedException(Method method)
          メソッドがスローすると期待される例外もしくはエラーのクラスを返します。
 List<Method> getAfterClassMethods(Class<?> clazz)
          テストクラスの解放メソッドのリストを返します。
 List<Method> getAfterMethods(Class<?> clazz)
          すべてのテストケース共通の解放メソッドのリストを返します。
 List<Method> getBeforeClassMethods(Class<?> clazz)
          テストクラスの初期化メソッドのリストを返します。
 List<Method> getBeforeMethods(Class<?> clazz)
          すべてのテストケース共通の初期化メソッドのリストを返します。
 Method getEachAfterMethod(Class<?> clazz, Method method)
          テストケース個別の解放メソッドを返します。
 Method getEachBeforeMethod(Class<?> clazz, Method method)
          テストケース個別の初期化メソッドを返します。
 Method getEachRecordMethod(Class<?> clazz, Method method)
          テストケース個別の記録メソッドを返します。
 String getRootDicon(Class<?> clazz, Method method)
          ルートコンテナを表すdiconファイルのパスを返します。
 List<Method> getTestMethods(Class<?> clazz)
          指定されたテストクラス内のすべてのテストメソッドを返します。
 long getTimeout(Method method)
          メソッドの実行のタイムアウトを表すミリ秒を返します。
protected  TxBehaviorType getTxBehaviorType(Class<?> clazz, Method method)
          トランザクションの振る舞いを返します。
 boolean isFulfilled(Class<?> clazz, Method method, Object test)
          テストケース実行の事前条件が満たされている場合trueを返します。
protected  boolean isFulfilled(Expression expression)
          事前条件が満たされた場合trueを返します。
 boolean isIgnored(Method method)
          メソッドが無視の対象の場合trueを返します。
 boolean needsTransaction(Class<?> clazz, Method method)
          トランザクションが必要とされる場合trueを返します。
 boolean needsWarmDeploy(Class<?> clazz, Method method)
          WARM deployが必要とされる場合trueを返します。
 boolean requiresTransactionCommitment(Class<?> clazz, Method method)
          トランザクションのコミットが必要とされる場合trueを返します。
 void setAfterAnnotation(Class<? extends Annotation> afterAnnotation)
          全テストケースに共通の初期化メソッドに注釈可能なアノテーションクラスを設定します。
 void setAfterClassAnnotation(Class<? extends Annotation> afterClassAnnotation)
          テストクラスの解放メソッドに注釈可能なアノテーションクラスを設定します。
 void setBeforeAnnotation(Class<? extends Annotation> beforeAnnotation)
          全テストケースに共通の初期化メソッドに注釈可能なアノテーションクラスを設定します。
 void setBeforeClassAnnotation(Class<? extends Annotation> beforeClassAnnotation)
          テストクラスの初期化メソッドに注釈可能なアノテーションクラスを設定します。
 void setEnableIgnore(boolean enableIgnore)
          テストケースを無視する処理を有効とするかどうかを設定します。
 void setEnablePrerequisite(boolean enablePrerequisite)
          テストケースの事前条件チェックの処理を有効とするかどうかを設定します。
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

beforeClassAnnotation

protected Class<? extends Annotation> beforeClassAnnotation
テストクラスの初期化メソッドに注釈可能なアノテーションクラス


afterClassAnnotation

protected Class<? extends Annotation> afterClassAnnotation
テストクラスの解放メソッドに注釈可能なアノテーションクラス


beforeAnnotation

protected Class<? extends Annotation> beforeAnnotation
全テストケースに共通の初期化メソッドに注釈可能なアノテーションクラス


afterAnnotation

protected Class<? extends Annotation> afterAnnotation
全テストケースに共通の解放メソッドに注釈可能なアノテーションクラス


enableIgnore

protected boolean enableIgnore
テストケースを無視する処理が有効かどうかを表すフラグ。デフォルトはtrue


enablePrerequisite

protected boolean enablePrerequisite
テストケースの事前条件チェック処理が有効かどうかを表すフラグ。デフォルトはtrue

コンストラクタの詳細

AnnotationTestIntrospector

public AnnotationTestIntrospector()
メソッドの詳細

setBeforeClassAnnotation

public void setBeforeClassAnnotation(Class<? extends Annotation> beforeClassAnnotation)
テストクラスの初期化メソッドに注釈可能なアノテーションクラスを設定します。

パラメータ:
beforeClassAnnotation - アノテーションクラス

setAfterClassAnnotation

public void setAfterClassAnnotation(Class<? extends Annotation> afterClassAnnotation)
テストクラスの解放メソッドに注釈可能なアノテーションクラスを設定します。

パラメータ:
afterClassAnnotation - アノテーションクラス

setBeforeAnnotation

public void setBeforeAnnotation(Class<? extends Annotation> beforeAnnotation)
全テストケースに共通の初期化メソッドに注釈可能なアノテーションクラスを設定します。

パラメータ:
beforeAnnotation - アノテーションクラス

setAfterAnnotation

public void setAfterAnnotation(Class<? extends Annotation> afterAnnotation)
全テストケースに共通の初期化メソッドに注釈可能なアノテーションクラスを設定します。

パラメータ:
afterAnnotation - アノテーションクラス

setEnableIgnore

public void setEnableIgnore(boolean enableIgnore)
テストケースを無視する処理を有効とするかどうかを設定します。

パラメータ:
enableIgnore - 無視する処理が有効の場合true、そうでない場合false

setEnablePrerequisite

public void setEnablePrerequisite(boolean enablePrerequisite)
テストケースの事前条件チェックの処理を有効とするかどうかを設定します。

パラメータ:
enablePrerequisite - 事前条件チェックの処理が有効の場合true、そうでない場合false

getBeforeClassMethods

public List<Method> getBeforeClassMethods(Class<?> clazz)
インタフェース S2TestIntrospector の記述:
テストクラスの初期化メソッドのリストを返します。

定義:
インタフェース S2TestIntrospector 内の getBeforeClassMethods
パラメータ:
clazz - テストクラス
戻り値:
初期化メソッドのリスト

getAfterClassMethods

public List<Method> getAfterClassMethods(Class<?> clazz)
インタフェース S2TestIntrospector の記述:
テストクラスの解放メソッドのリストを返します。

定義:
インタフェース S2TestIntrospector 内の getAfterClassMethods
パラメータ:
clazz - テストクラス
戻り値:
解放メソッドのリスト

getBeforeMethods

public List<Method> getBeforeMethods(Class<?> clazz)
インタフェース S2TestIntrospector の記述:
すべてのテストケース共通の初期化メソッドのリストを返します。

定義:
インタフェース S2TestIntrospector 内の getBeforeMethods
パラメータ:
clazz - テストクラス
戻り値:
初期化メソッドのリスト

getAfterMethods

public List<Method> getAfterMethods(Class<?> clazz)
インタフェース S2TestIntrospector の記述:
すべてのテストケース共通の解放メソッドのリストを返します。

定義:
インタフェース S2TestIntrospector 内の getAfterMethods
パラメータ:
clazz - テストクラス
戻り値:
解放メソッドのリスト

getTestMethods

public List<Method> getTestMethods(Class<?> clazz)
インタフェース S2TestIntrospector の記述:
指定されたテストクラス内のすべてのテストメソッドを返します。

定義:
インタフェース S2TestIntrospector 内の getTestMethods
パラメータ:
clazz - テストクラス
戻り値:
テストメソッドのリスト

getEachBeforeMethod

public Method getEachBeforeMethod(Class<?> clazz,
                                  Method method)
インタフェース S2TestIntrospector の記述:
テストケース個別の初期化メソッドを返します。

定義:
インタフェース S2TestIntrospector 内の getEachBeforeMethod
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
初期化メソッド

getEachAfterMethod

public Method getEachAfterMethod(Class<?> clazz,
                                 Method method)
インタフェース S2TestIntrospector の記述:
テストケース個別の解放メソッドを返します。

定義:
インタフェース S2TestIntrospector 内の getEachAfterMethod
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
解放メソッド

getEachRecordMethod

public Method getEachRecordMethod(Class<?> clazz,
                                  Method method)
インタフェース S2TestIntrospector の記述:
テストケース個別の記録メソッドを返します。

記録メソッドはEasyMockを利用して作成されたモックの振る舞いを記録するメソッドです。

定義:
インタフェース S2TestIntrospector 内の getEachRecordMethod
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
記録メソッド

expectedException

public Class<? extends Throwable> expectedException(Method method)
インタフェース S2TestIntrospector の記述:
メソッドがスローすると期待される例外もしくはエラーのクラスを返します。

定義:
インタフェース S2TestIntrospector 内の expectedException
パラメータ:
method - テストメソッド
戻り値:
期待される例外もしくはエラーがある場合はそのクラス、ない場合はnull

getTimeout

public long getTimeout(Method method)
インタフェース S2TestIntrospector の記述:
メソッドの実行のタイムアウトを表すミリ秒を返します。

定義:
インタフェース S2TestIntrospector 内の getTimeout
パラメータ:
method - テストメソッド
戻り値:
タイムアウトを表すミリ秒

isIgnored

public boolean isIgnored(Method method)
インタフェース S2TestIntrospector の記述:
メソッドが無視の対象の場合trueを返します。

定義:
インタフェース S2TestIntrospector 内の isIgnored
パラメータ:
method - テストメソッド
戻り値:
メソッドが無視の対象の場合true、そうでない場合false

isFulfilled

public boolean isFulfilled(Class<?> clazz,
                           Method method,
                           Object test)
インタフェース S2TestIntrospector の記述:
テストケース実行の事前条件が満たされている場合trueを返します。

定義:
インタフェース S2TestIntrospector 内の isFulfilled
パラメータ:
clazz - テストクラス
method - テストメソッド
test - テストオブジェクト
戻り値:
事前条件が満たされている場合true、そうでない場合false

isFulfilled

protected boolean isFulfilled(Expression expression)
事前条件が満たされた場合trueを返します。

パラメータ:
expression - 事前条件を表す式
戻り値:
事前条件が満たされた場合true、満たされない場合false

needsTransaction

public boolean needsTransaction(Class<?> clazz,
                                Method method)
インタフェース S2TestIntrospector の記述:
トランザクションが必要とされる場合trueを返します。

定義:
インタフェース S2TestIntrospector 内の needsTransaction
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
トランザクションが必要とされる場合true、そうでない場合false

requiresTransactionCommitment

public boolean requiresTransactionCommitment(Class<?> clazz,
                                             Method method)
インタフェース S2TestIntrospector の記述:
トランザクションのコミットが必要とされる場合trueを返します。

定義:
インタフェース S2TestIntrospector 内の requiresTransactionCommitment
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
トランザクションのコミットが必要とされる場合true、そうでない場合false

getTxBehaviorType

protected TxBehaviorType getTxBehaviorType(Class<?> clazz,
                                           Method method)
トランザクションの振る舞いを返します。

パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
トランザクションの振る舞い

needsWarmDeploy

public boolean needsWarmDeploy(Class<?> clazz,
                               Method method)
インタフェース S2TestIntrospector の記述:
WARM deployが必要とされる場合trueを返します。

定義:
インタフェース S2TestIntrospector 内の needsWarmDeploy
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
WARM deployが必要とされる場合true、そうでない場合false

createMock

public void createMock(Method method,
                       Object test,
                       InternalTestContext context)
インタフェース S2TestIntrospector の記述:
MockInterceptorを利用したモックを作成します。

定義:
インタフェース S2TestIntrospector 内の createMock
パラメータ:
method - テストメソッド
test - テストクラスのインスタンス
context - テストコンテキスト

createMock

protected void createMock(Mock mock,
                          Method method,
                          Object test,
                          InternalTestContext context)
mockからモックインターセプターを作成し、contextに登録します。

パラメータ:
mock - モックインターセプターの定義
method - テストメソッド
test - テストクラスのインスタンス
context - S2JUnit4の内部的なテストコンテキスト

createExpression

protected Expression createExpression(String source,
                                      Method method,
                                      Object test)
式を作成します。

パラメータ:
source - 式の文字列表現
method - テストメソッド
test - テストクラスのインスタンス
戻り値:

getRootDicon

public String getRootDicon(Class<?> clazz,
                           Method method)
インタフェース S2TestIntrospector の記述:
ルートコンテナを表すdiconファイルのパスを返します。

定義:
インタフェース S2TestIntrospector 内の getRootDicon
パラメータ:
clazz - テストクラス
method - テストメソッド
戻り値:
ルートコンテナを表すdiconファイルのパス


Copyright © 2005-2007 The Seasar Foundation. All Rights Reserved.