Package org.elasticsearchfr.handson.ex0

Source Code of org.elasticsearchfr.handson.ex0.NodeTest

package org.elasticsearchfr.handson.ex0;

import org.elasticsearch.node.Node;
import org.junit.Assert;
import org.junit.Test;

/**
* Exercice 0: we just want to start a Node
* @author LAYA
*
*/
public class NodeTest{

  @Test
  public void testNode() throws InterruptedException {
    Node node = null;

    // Then we start our node for tests
    // TODO Build a Node here
    // node = ... ;

    Assert.assertNotNull(node);
    Assert.assertFalse(node.isClosed());
  }
}
TOP

Related Classes of org.elasticsearchfr.handson.ex0.NodeTest

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.