タグ

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

  • 関連タグはありません

タグの絞り込みを解除

TDDとVBAに関するJHashimotoのブックマーク (2)

  • rubberduckvba

    Home of the Rubberduck open-source project and its next iteration, Rubberduck Core - VIVAT CUCUMIS! Enhancing the VBE since 2014, Rubberduck brings VBA into this Century with modern-day IDE features, from unit testing and navigation enhancements to static code analysis and refactorings.

    JHashimoto
    JHashimoto 2016/02/28
    "Rubberduck is a free, open-source COM add-in under active development that integrates with the VBE to enable the features every programmer wants to have in their IDE."
  • VBAUnit: ある SE のつぶやき

    VBAUnit VBAUnitとは、AccessやExcelなどで使用できる単体テスト支援ツールです。 VBAUnit のような単体テスト支援ツールは、xUnit とも呼ばれ、JavaのJUnitや.NETのNUnitなどが有名です。 使い方は以下のようになります。 Dim a As Integer Dim b As Integer a = 1 b = 2 mAsert.Equals 3, a + b このテストは、 a + b が 3と等しい場合はテストが成功、異なる場合はテストが失敗になります。 これは単純な例ですが、処理結果と期待される結果を比較することで、いろんなケースをテストできてかなり便利です。実際に使ってみたところ、境界値付近に潜んでいたバグを洗い出すことができて、非常に役に立ちました。 VBAUnitに関する情報は、ネットにもほとんどありませんが、"readme.html"

    JHashimoto
    JHashimoto 2011/12/07
    "VBAUnitとは、AccessやExcelなどで使用できる単体テスト支援ツールです。"
  • 1