Package com.cxy.redisclient

Source Code of com.cxy.redisclient.SetTest

package com.cxy.redisclient;

import java.util.HashSet;
import java.util.Set;

import junit.framework.TestCase;

import com.cxy.redisclient.service.SetService;

public class SetTest extends TestCase {

  public void testAdd() {
    SetService service = new SetService();
    Set<String> values = new HashSet<String>();
    values.add("hello1");
    values.add("world1");
   
    service.add(1, 0, "myset", values, -1);
  }
 
  public void testRemove() {
    SetService service = new SetService();
    Set<String> values = new HashSet<String>();
    values.add("hello1");
    values.add("world1");
   
    service.remove(1, 0, "myset", values);
  }

}
TOP

Related Classes of com.cxy.redisclient.SetTest

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.