Package br.com.ingenieux.picloud

Source Code of br.com.ingenieux.picloud.UnpicklerTest

package br.com.ingenieux.picloud;

import net.razorvine.pickle.Unpickler;

import org.junit.Test;

public class UnpicklerTest {
  @Test
  public void testSomething() throws Exception {
    Unpickler u = new Unpickler();
   
    Object f = u.load(getClass().getResourceAsStream("/kwargs.bin"));
   
    int i = 0;
   
    i++;
  }

}
TOP

Related Classes of br.com.ingenieux.picloud.UnpicklerTest

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.