Package se.despotify.client.protocol.command.media

Source Code of se.despotify.client.protocol.command.media.TestSearch

package se.despotify.client.protocol.command.media;

import se.despotify.DespotifyClientTest;
import se.despotify.domain.media.Result;
import org.junit.Test;

/**
* @author kalle
* @since 2009-jun-05 03:53:57
*/
public class TestSearch extends DespotifyClientTest {

  @Test
  public void test() throws Exception {
    Result result = (Result)manager.send(new Search(store, "Johnny Cash"));
    assertTrue(result.getTotalTracks() > 2000);
    assertEquals(100, result.getTracks().size());
    // todo assert a bit. at least we know there was no exception.
    System.currentTimeMillis();
  }
}
TOP

Related Classes of se.despotify.client.protocol.command.media.TestSearch

TOP
Copyright © 2018 www.massapi.com. 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.