Package com.github.hakko.musiccabinet.domain.model.library

Examples of com.github.hakko.musiccabinet.domain.model.library.Period


  @Test
  public void validateParameters() throws ApplicationException {

    final String method = UserTopArtistsClient.METHOD;
    final String lastFmUser = "arnathalon";
    final Period period = Period.OVERALL;
   
    new UserTopArtistsClient() {
      @Override
      protected WSResponse executeWSRequest(WebserviceInvocation wi,
          List<NameValuePair> params) throws ApplicationException {
       
        Assert.assertEquals(Calltype.USER_GET_TOP_ARTISTS, wi.getCallType());
        Assert.assertEquals(lastFmUser, wi.getUser().getLastFmUsername());
       
        assertHasParameter(params, PARAM_METHOD, method);
        assertHasParameter(params, PARAM_USER, lastFmUser);
        assertHasParameter(params, PARAM_PERIOD, period.getDescription());
       
        return null;
      }
     
      @Override
View Full Code Here

TOP

Related Classes of com.github.hakko.musiccabinet.domain.model.library.Period

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.