タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

javaとJavaとmockに関するnirvashのブックマーク (3)

  • Virtual Mock Objects using AspectJ with JUNIT

    XProgramming > XP Magazine > Virtual Mock Objects using AspectJ with JUNIT COLLECTED TOPICS: Kate Oneal | Adventures in C# | Documentation in XP | Book Reviews Virtual Mock Objects using AspectJ with JUNIT Simon Monk, Stephen Hall 10/01/2002 The authors show us how they use aspect-oriented programming in AspectJ to facilitate isolation of testable units, without hand-crafting Mock Ob

  • Object Computing, Inc. - Java News Brief - August 2005

    By Brian Gilstrap, OCI Principal Software Engineer August 2005 Introduction In recent years, the development community has found unit testing (especially automated unit testing), invaluable in building reliable software. Mock objects have been a key technique for enabling automated unit testing of object-oriented software. However, when we expand the scope of testing into the realm of distributed

  • EasyMock vs jMock - N2 ToolBox(跡地)

    昨日もちょっと書きましたが、どちらも動的にMockObjectを生成するタイプのツールであるEasyMockとjMockを両方ちょっとだけ試してみました。 機能的には大差なくて、どちらも以下のような事ができます。 動的プロキシの機構を使ったインターフェースのMockObject生成cglibを使った拡張ライブラリによるクラスのMockObject生成予期されるメソッド呼び出しの設定と検証予期されるメソッド呼び出しに対する戻り値または例外の設定予期されるメソッド呼び出しは複数回分を設定できますし、順番を指定することもできます。 違うのは、予期されるメソッド呼び出しの設定方法です。 EasyMockだと以下のようになります。 MockControl ctrl = MockControl.createControl(Foo.class); //MockObjectの生成 Foo mockFoo

    EasyMock vs jMock - N2 ToolBox(跡地)
    nirvash
    nirvash 2005/08/07
    モックオブジェクト比較 @ Java。ちなみに mockpp は両方の記述方法ができる。
  • 1