Package org.renjin

Source Code of org.renjin.PackageArtifactTest

package org.renjin;

import java.io.IOException;

import org.junit.Ignore;
import org.junit.Test;
import org.renjin.eval.Context;
import org.renjin.parser.RParser;


public class PackageArtifactTest {

  @Ignore("Commenting test out because other tests verify that we can run library, and cannot reproduce the test failure.")
  @Test
  public void test() throws IOException {
      Context context = Context.newTopLevelContext();
      context.init();
   
      context.evaluate(RParser.parseSource("library(aspect, verbose=TRUE)\n"));
  }
}
TOP

Related Classes of org.renjin.PackageArtifactTest

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.