Skip to content

Commit

Permalink
テストクラスでは汎用的な例外のキャッチを許容するよう修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjiyoshid-a committed Jan 24, 2025
1 parent ea66a20 commit 988945a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@
<suppress checks=".*" files="com[\\/]dressca[\\/]infrastructure[\\/]repository[\\/]mybatis[\\/]generated"/>
<!-- テストクラスのメソッド名はチェックしない(日本語を使用するため) -->
<suppress checks="MethodName" files=".*Test.java$"/>
<!-- テストクラスでは汎用的な例外のキャッチを禁止しない -->
<suppress checks="IllegalCatch" files=".*Test.java$"/>
</suppressions>
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@
<suppress checks="MethodName" files=".*Test.java$"/>
<!-- メッセージクラスの文字数はチェックしない -->
<suppress checks="LineLength" files=".*MessageIdConstants.java$"/>
<!-- テストクラスでは汎用的な例外のキャッチを禁止しない -->
<suppress checks="IllegalCatch" files=".*Test.java$"/>
</suppressions>

0 comments on commit 988945a

Please sign in to comment.