ATG ドロップレット内で、リポジトリからレコードを取得しています。今、モックしようとするとRQLStatement
、org.mockito.exceptions.misusing.MissingMethodInvocationException
以下は、私が嘲笑しようとしているステートメントです。
final RepositoryView view = this.getRepository().getView("product");
final RqlStatement statement = RqlStatement.parseRqlStatement("id = ?0");
prodItems = statement.executeQuery(view, params);
私はmockitoとpowermockitoを使用しましたが、うまくいきません
PowerMockito.mockStatic(RqlStatement.class);
PowerMockito.when(RqlStatement.parseRqlStatement("id =?0")).thenReturn(this.statementmock);
Mockito.when(this.statementmock.executeQuery(this.viewMock, params)).thenReturn(new RepositoryItem[4]);