package com.intuit.tank.converter; /* * #%L * JSF Support Beans * %% * Copyright (C) 2011 - 2015 Intuit Inc. * %% * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * #L% */ import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import org.junit.*; import static org.junit.Assert.*; import org.primefaces.extensions.component.dynaform.DynaForm; import com.intuit.tank.converter.ScriptConverter; import com.intuit.tank.project.Script; /** * The class <code>ScriptConverterTest</code> contains tests for the class <code>{@link ScriptConverter}</code>. * * @generatedBy CodePro at 12/15/14 3:52 PM */ public class ScriptConverterTest { /** * Run the ScriptConverter() constructor test. * * @generatedBy CodePro at 12/15/14 3:52 PM */ @Test public void testScriptConverter_1() throws Exception { ScriptConverter result = new ScriptConverter(); assertNotNull(result); } /** * Run the Object getAsObject(FacesContext,UIComponent,String) method test. * * @throws Exception * * @generatedBy CodePro at 12/15/14 3:52 PM */ @Test public void testGetAsObject_1() throws Exception { ScriptConverter fixture = new ScriptConverter(); String value = fixture.getAsString(null, null, new Script()); Object result = fixture.getAsObject(null, null, value); } /** * Run the String getAsString(FacesContext,UIComponent,Object) method test. * * @throws Exception * * @generatedBy CodePro at 12/15/14 3:52 PM */ @Test public void testGetAsString_1() throws Exception { ScriptConverter fixture = new ScriptConverter(); Object obj = new Script(); String result = fixture.getAsString(null, null, obj); assertNotNull(result); } }