4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JUnitで各種assertとmatcher、Mockitoのmockを呼ぶstaticインポート文

Posted at
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import static org.junit.matchers.JUnitMatchers.*;
import static org.mockito.Mockito.*;

いつもJUnitのテストをMockitoを使ってモックを作りながら実装するとき、
このstaticインポート文を利用する。

これでassert()とかis()とかnotValue()などがEclipseのコードアシストに出てくる。

ただEclipseのインポート編成をすると消えてしまう。
消えない設定をすればいいのだけれど。

4
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?