コード例 #1
0
ファイル: CredentialsTest.java プロジェクト: mrjonny2/grendel
    @Before
    @Override
    public void setup() throws Exception {
      super.setup();

      when(userDAO.findById("woo")).thenReturn(null);
    }
コード例 #2
0
ファイル: CredentialsTest.java プロジェクト: mrjonny2/grendel
    @Before
    @Override
    public void setup() throws Exception {
      super.setup();

      when(keySet.unlock(any(char[].class))).thenThrow(new CryptographicException("augh"));
    }
コード例 #3
0
ファイル: CredentialsTest.java プロジェクト: mrjonny2/grendel
 @Before
 @Override
 public void setup() throws Exception {
   super.setup();
 }