@Autowired
private CommandDispatcher dispatcher;
@Test
public void testCopyright() throws Exception {
CopyrightRequest request = new CopyrightRequest();
CopyrightResponse response = (CopyrightResponse) dispatcher.execute(
CopyrightRequest.COMMAND, request, null, "en");
if (response.isError()) {
response.getErrors().get(0).printStackTrace();
}