Package org.tarantool.it

Source Code of org.tarantool.it.TestClient

package org.tarantool.it;

import org.junit.Test;
import org.tarantool.core.StandardTest;
import org.tarantool.core.TarantoolConnection;
import org.tarantool.core.impl.SocketChannelTarantoolConnection;

public class TestClient {

  @Test
  public void standardTest() {

    TarantoolConnection connection = new SocketChannelTarantoolConnection("localhost", 33313);

    StandardTest st = new StandardTest(connection);
    st.run();

    connection.close();
  }

}
TOP

Related Classes of org.tarantool.it.TestClient

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.