Package com.dp.nebula.wormhole.transform.impls

Source Code of com.dp.nebula.wormhole.transform.impls.AddAndFiltTransformerTest

package com.dp.nebula.wormhole.transform.impls;


import org.junit.Test;

import com.dp.nebula.wormhole.common.DefaultLine;
import com.dp.nebula.wormhole.common.interfaces.ILine;

public class AddAndFiltTransformerTest {
  @Test
  public void testTransform(){
    ILine line = new DefaultLine();
    line.addField("first");
    line.addField("second");
    line.addField("third");
   
    ILine result = new DefaultLine();
    result.addField("third");
    result.addField("second");
    result.addField("1,2");
    result.addField("first");

   
    result = new DefaultLine();
    result.addField("good");
  }
}
TOP

Related Classes of com.dp.nebula.wormhole.transform.impls.AddAndFiltTransformerTest

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.