HorizonTest.java [test/soils] Revision: default Date:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package soils;
import csip.api.server.ServiceException;
import csip.SessionLogger;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import org.codehaus.jettison.json.JSONArray;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
import org.testng.Reporter;
import soils.db.SOILS_DB_Factory;
import soils.db.tables.TableHorizon;
import soils.db.tables.TableHorizonCalculations;
import soils.utils.EvalResult;
import soils.db.SOILS_DATA;
import soils.db.mssql_sdm;
/**
*
* @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
*/
public class HorizonTest {
SOILS_DATA soilsDb;
public HorizonTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() throws Exception {
SessionLogger Log = new SessionLogger();
System.out.println("Loading the SDMDriver, and testing a connection.");
Class.forName("csip.sdm.SDMDriver");
Reporter.log("Driver was loaded for: csip.sdm.SDMDriver");
Connection conn = DriverManager.getConnection("jdbc:sdm:rest://SDMDataAccess.sc.egov.usda.gov/Tabular/post.rest");
Reporter.log("Connection to remote SDM REST Service was successful");
soilsDb = new mssql_sdm(conn, Log);
}
@After
public void tearDown() {
}
/**
* Test of setRequiredInputs method, of class Horizon.
*/
@Test
public void testSetRequiredInputs() {
System.out.println("setRequiredInputs");
ArrayList<String> horizonInputs = null;
Horizon.setRequiredInputs(horizonInputs);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setTextureGroups method, of class Horizon.
*/
@Test
public void testSetTextureGroups() throws Exception {
System.out.println("setTextureGroups");
ResultSet results = null;
Horizon instance = new Horizon();
while (results.next()) {
instance.setTextureGroups(results);
}
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of textureGroups method, of class Horizon.
*/
@Test
public void testTextureGroups() {
System.out.println("textureGroups");
Horizon instance = new Horizon();
LinkedHashMap<String, TextureGroup> expResult = null;
LinkedHashMap<String, TextureGroup> result = instance.textureGroups();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of readFromSQL method, of class Horizon.
*/
@Test
public void testReadFromSQL() throws Exception {
System.out.println("readFromSQL");
ResultSet results = null;
Horizon instance = new Horizon();
instance.readFromSQL(results);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdept_l method, of class Horizon.
*/
@Test
public void testHzdept_l_double() {
System.out.println("hzdept_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzdept_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdept_l method, of class Horizon.
*/
@Test
public void testHzdept_l_0args() {
System.out.println("hzdept_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzdept_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdept_h method, of class Horizon.
*/
@Test
public void testHzdept_h_double() {
System.out.println("hzdept_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzdept_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdept_h method, of class Horizon.
*/
@Test
public void testHzdept_h_0args() {
System.out.println("hzdept_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzdept_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdepb_l method, of class Horizon.
*/
@Test
public void testHzdepb_l_double() {
System.out.println("hzdepb_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzdepb_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdepb_l method, of class Horizon.
*/
@Test
public void testHzdepb_l_0args() {
System.out.println("hzdepb_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzdepb_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdepb_h method, of class Horizon.
*/
@Test
public void testHzdepb_h_double() {
System.out.println("hzdepb_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzdepb_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdepb_h method, of class Horizon.
*/
@Test
public void testHzdepb_h_0args() {
System.out.println("hzdepb_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzdepb_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvc_l method, of class Horizon.
*/
@Test
public void testSandvc_l_double() {
System.out.println("sandvc_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandvc_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvc_l method, of class Horizon.
*/
@Test
public void testSandvc_l_0args() {
System.out.println("sandvc_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandvc_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvc_r method, of class Horizon.
*/
@Test
public void testSandvc_r_double() {
System.out.println("sandvc_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandvc_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvc_r method, of class Horizon.
*/
@Test
public void testSandvc_r_0args() {
System.out.println("sandvc_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandvc_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvc_h method, of class Horizon.
*/
@Test
public void testSandvc_h_double() {
System.out.println("sandvc_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandvc_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvc_h method, of class Horizon.
*/
@Test
public void testSandvc_h_0args() {
System.out.println("sandvc_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandvc_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandco_l method, of class Horizon.
*/
@Test
public void testSandco_l_double() {
System.out.println("sandco_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandco_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandco_l method, of class Horizon.
*/
@Test
public void testSandco_l_0args() {
System.out.println("sandco_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandco_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandco_r method, of class Horizon.
*/
@Test
public void testSandco_r_double() {
System.out.println("sandco_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandco_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandco_r method, of class Horizon.
*/
@Test
public void testSandco_r_0args() {
System.out.println("sandco_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandco_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandco_h method, of class Horizon.
*/
@Test
public void testSandco_h_double() {
System.out.println("sandco_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandco_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandco_h method, of class Horizon.
*/
@Test
public void testSandco_h_0args() {
System.out.println("sandco_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandco_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandmed_l method, of class Horizon.
*/
@Test
public void testSandmed_l_double() {
System.out.println("sandmed_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandmed_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandmed_l method, of class Horizon.
*/
@Test
public void testSandmed_l_0args() {
System.out.println("sandmed_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandmed_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandmed_r method, of class Horizon.
*/
@Test
public void testSandmed_r_double() {
System.out.println("sandmed_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandmed_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandmed_r method, of class Horizon.
*/
@Test
public void testSandmed_r_0args() {
System.out.println("sandmed_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandmed_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandmed_h method, of class Horizon.
*/
@Test
public void testSandmed_h_double() {
System.out.println("sandmed_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandmed_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandmed_h method, of class Horizon.
*/
@Test
public void testSandmed_h_0args() {
System.out.println("sandmed_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandmed_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandfine_l method, of class Horizon.
*/
@Test
public void testSandfine_l_double() {
System.out.println("sandfine_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandfine_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandfine_l method, of class Horizon.
*/
@Test
public void testSandfine_l_0args() {
System.out.println("sandfine_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandfine_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandfine_r method, of class Horizon.
*/
@Test
public void testSandfine_r_double() {
System.out.println("sandfine_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandfine_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandfine_r method, of class Horizon.
*/
@Test
public void testSandfine_r_0args() {
System.out.println("sandfine_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandfine_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandfine_h method, of class Horizon.
*/
@Test
public void testSandfine_h_double() {
System.out.println("sandfine_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandfine_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandfine_h method, of class Horizon.
*/
@Test
public void testSandfine_h_0args() {
System.out.println("sandfine_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandfine_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvf_l method, of class Horizon.
*/
@Test
public void testSandvf_l_double() {
System.out.println("sandvf_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandvf_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvf_l method, of class Horizon.
*/
@Test
public void testSandvf_l_0args() {
System.out.println("sandvf_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandvf_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvf_r method, of class Horizon.
*/
@Test
public void testSandvf_r_double() {
System.out.println("sandvf_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandvf_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvf_r method, of class Horizon.
*/
@Test
public void testSandvf_r_0args() {
System.out.println("sandvf_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandvf_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvf_h method, of class Horizon.
*/
@Test
public void testSandvf_h_double() {
System.out.println("sandvf_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.sandvf_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandvf_h method, of class Horizon.
*/
@Test
public void testSandvf_h_0args() {
System.out.println("sandvf_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.sandvf_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wtenthbar_l method, of class Horizon.
*/
@Test
public void testWtenthbar_l_double() {
System.out.println("wtenthbar_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.wtenthbar_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wtenthbar_l method, of class Horizon.
*/
@Test
public void testWtenthbar_l_0args() {
System.out.println("wtenthbar_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wtenthbar_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wtenthbar_r method, of class Horizon.
*/
@Test
public void testWtenthbar_r_double() {
System.out.println("wtenthbar_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.wtenthbar_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wtenthbar_r method, of class Horizon.
*/
@Test
public void testWtenthbar_r_0args() {
System.out.println("wtenthbar_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wtenthbar_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wtenthbar_h method, of class Horizon.
*/
@Test
public void testWtenthbar_h_double() {
System.out.println("wtenthbar_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.wtenthbar_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wtenthbar_h method, of class Horizon.
*/
@Test
public void testWtenthbar_h_0args() {
System.out.println("wtenthbar_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wtenthbar_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ecec_l method, of class Horizon.
*/
@Test
public void testEcec_l_double() {
System.out.println("ecec_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.ecec_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ecec_l method, of class Horizon.
*/
@Test
public void testEcec_l_0args() {
System.out.println("ecec_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ecec_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ecec_r method, of class Horizon.
*/
@Test
public void testEcec_r_double() {
System.out.println("ecec_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.ecec_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ecec_r method, of class Horizon.
*/
@Test
public void testEcec_r_0args() {
System.out.println("ecec_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ecec_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ecec_h method, of class Horizon.
*/
@Test
public void testEcec_h_double() {
System.out.println("ecec_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.ecec_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ecec_h method, of class Horizon.
*/
@Test
public void testEcec_h_0args() {
System.out.println("ecec_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ecec_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of caco3_l method, of class Horizon.
*/
@Test
public void testCaco3_l_double() {
System.out.println("caco3_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.caco3_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of caco3_l method, of class Horizon.
*/
@Test
public void testCaco3_l_0args() {
System.out.println("caco3_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.caco3_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of caco3_r method, of class Horizon.
*/
@Test
public void testCaco3_r_double() {
System.out.println("caco3_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.caco3_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of caco3_r method, of class Horizon.
*/
@Test
public void testCaco3_r_0args() {
System.out.println("caco3_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.caco3_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of caco3_h method, of class Horizon.
*/
@Test
public void testCaco3_h_double() {
System.out.println("caco3_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.caco3_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of caco3_h method, of class Horizon.
*/
@Test
public void testCaco3_h_0args() {
System.out.println("caco3_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.caco3_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph01mcacl2_l method, of class Horizon.
*/
@Test
public void testPh01mcacl2_l_double() {
System.out.println("ph01mcacl2_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.ph01mcacl2_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph01mcacl2_l method, of class Horizon.
*/
@Test
public void testPh01mcacl2_l_0args() {
System.out.println("ph01mcacl2_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ph01mcacl2_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph01mcacl2_r method, of class Horizon.
*/
@Test
public void testPh01mcacl2_r_double() {
System.out.println("ph01mcacl2_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.ph01mcacl2_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph01mcacl2_r method, of class Horizon.
*/
@Test
public void testPh01mcacl2_r_0args() {
System.out.println("ph01mcacl2_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ph01mcacl2_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph01mcacl2_h method, of class Horizon.
*/
@Test
public void testPh01mcacl2_h_double() {
System.out.println("ph01mcacl2_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.ph01mcacl2_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph01mcacl2_h method, of class Horizon.
*/
@Test
public void testPh01mcacl2_h_0args() {
System.out.println("ph01mcacl2_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ph01mcacl2_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lep_l method, of class Horizon.
*/
@Test
public void testLep_l_double() {
System.out.println("lep_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.lep_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lep_l method, of class Horizon.
*/
@Test
public void testLep_l_0args() {
System.out.println("lep_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.lep_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lep_r method, of class Horizon.
*/
@Test
public void testLep_r_double() {
System.out.println("lep_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.lep_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lep_r method, of class Horizon.
*/
@Test
public void testLep_r_0args() {
System.out.println("lep_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.lep_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lep_h method, of class Horizon.
*/
@Test
public void testLep_h_double() {
System.out.println("lep_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.lep_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lep_h method, of class Horizon.
*/
@Test
public void testLep_h_0args() {
System.out.println("lep_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.lep_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ksat_l method, of class Horizon.
*/
@Test
public void testKsat_l_double() {
System.out.println("ksat_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.ksat_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ksat_l method, of class Horizon.
*/
@Test
public void testKsat_l_0args() {
System.out.println("ksat_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ksat_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ksat_r method, of class Horizon.
*/
@Test
public void testKsat_r_double() {
System.out.println("ksat_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.ksat_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ksat_r method, of class Horizon.
*/
@Test
public void testKsat_r_0args() {
System.out.println("ksat_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ksat_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ksat_h method, of class Horizon.
*/
@Test
public void testKsat_h_double() {
System.out.println("ksat_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.ksat_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ksat_h method, of class Horizon.
*/
@Test
public void testKsat_h_0args() {
System.out.println("ksat_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ksat_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzname method, of class Horizon.
*/
@Test
public void testHzname_String() {
System.out.println("hzname");
String value = "";
Horizon instance = new Horizon();
instance.hzname(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzname method, of class Horizon.
*/
@Test
public void testHzname_0args() {
System.out.println("hzname");
Horizon instance = new Horizon();
String expResult = "";
String result = instance.hzname();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of desgnmaster method, of class Horizon.
*/
@Test
public void testDesgnmaster_String() {
System.out.println("desgnmaster");
String value = "";
Horizon instance = new Horizon();
instance.desgnmaster(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of desgnmaster method, of class Horizon.
*/
@Test
public void testDesgnmaster_0args() {
System.out.println("desgnmaster");
Horizon instance = new Horizon();
String expResult = "";
String result = instance.desgnmaster();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of silttotal_l method, of class Horizon.
*/
@Test
public void testSilttotal_l_double() {
System.out.println("silttotal_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.silttotal_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of silttotal_l method, of class Horizon.
*/
@Test
public void testSilttotal_l_0args() {
System.out.println("silttotal_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.silttotal_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of claytotal_l method, of class Horizon.
*/
@Test
public void testClaytotal_l_double() {
System.out.println("claytotal_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.claytotal_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of claytotal_l method, of class Horizon.
*/
@Test
public void testClaytotal_l_0args() {
System.out.println("claytotal_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.claytotal_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of silttotal_h method, of class Horizon.
*/
@Test
public void testSilttotal_h_double() {
System.out.println("silttotal_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.silttotal_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of silttotal_h method, of class Horizon.
*/
@Test
public void testSilttotal_h_0args() {
System.out.println("silttotal_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.silttotal_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of claytotal_h method, of class Horizon.
*/
@Test
public void testClaytotal_h_double() {
System.out.println("claytotal_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.claytotal_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of claytotal_h method, of class Horizon.
*/
@Test
public void testClaytotal_h_0args() {
System.out.println("claytotal_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.claytotal_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandtotal_l method, of class Horizon.
*/
@Test
public void testSandtotal_l_double() {
System.out.println("sandtotal_l");
double value = 123.456;
Horizon instance = new Horizon();
instance.sandtotal_l(value);
assertEquals(123.456, instance.sandtotal_l(), 0.0);
}
/**
* Test of sandtotal_l method, of class Horizon.
*/
@Test
public void testSandtotal_l_0args() {
System.out.println("sandtotal_l");
Horizon instance = new Horizon();
double expResult = EvalResult.getDefaultDouble();
double result = instance.sandtotal_l();
assertEquals(true, EvalResult.testDefaultDouble(result));
}
/**
* Test of sandtotal_h method, of class Horizon.
*/
@Test
public void testSandtotal_h_double() {
System.out.println("sandtotal_h");
double value = 102.5;
Horizon instance = new Horizon();
instance.sandtotal_h(value);
assertEquals(102.5, instance.sandtotal_h(), 0.0);
}
/**
* Test of sandtotal_h method, of class Horizon.
*/
@Test
public void testSandtotal_h_0args() {
System.out.println("sandtotal_h");
Horizon instance = new Horizon();
double expResult = EvalResult.getDefaultDouble();
double result = instance.sandtotal_h();
assertEquals(true, EvalResult.testDefaultDouble(result));
}
/**
* Test of om_l method, of class Horizon.
*/
@Test
public void testOm_l_double() {
System.out.println("om_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.om_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of om_l method, of class Horizon.
*/
@Test
public void testOm_l_0args() {
System.out.println("om_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.om_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of om_h method, of class Horizon.
*/
@Test
public void testOm_h_double() {
System.out.println("om_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.om_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of om_h method, of class Horizon.
*/
@Test
public void testOm_h_0args() {
System.out.println("om_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.om_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cokey method, of class Horizon.
*/
@Test
public void testCokey_String() {
System.out.println("cokey");
String value = "";
Horizon instance = new Horizon();
instance.cokey(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cokey method, of class Horizon.
*/
@Test
public void testCokey_0args() {
System.out.println("cokey");
Horizon instance = new Horizon();
String expResult = "";
String result = instance.cokey();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cec7_l method, of class Horizon.
*/
@Test
public void testCec7_l_double() {
System.out.println("cec7_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.cec7_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cec7_l method, of class Horizon.
*/
@Test
public void testCec7_l_0args() {
System.out.println("cec7_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.cec7_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cec7_r method, of class Horizon.
*/
@Test
public void testCec7_r_double() {
System.out.println("cec7_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.cec7_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cec7_r method, of class Horizon.
*/
@Test
public void testCec7_r_0args() {
System.out.println("cec7_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.cec7_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cec7_h method, of class Horizon.
*/
@Test
public void testCec7_h_double() {
System.out.println("cec7_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.cec7_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of cec7_h method, of class Horizon.
*/
@Test
public void testCec7_h_0args() {
System.out.println("cec7_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.cec7_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wthirdbar_l method, of class Horizon.
*/
@Test
public void testWthirdbar_l_double() {
System.out.println("wthirdbar_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.wthirdbar_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wthirdbar_l method, of class Horizon.
*/
@Test
public void testWthirdbar_l_0args() {
System.out.println("wthirdbar_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wthirdbar_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wthirdbar_r method, of class Horizon.
*/
@Test
public void testWthirdbar_r_double() {
System.out.println("wthirdbar_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.wthirdbar_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wthirdbar_r method, of class Horizon.
*/
@Test
public void testWthirdbar_r_0args() {
System.out.println("wthirdbar_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wthirdbar_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wthirdbar_h method, of class Horizon.
*/
@Test
public void testWthirdbar_h_double() {
System.out.println("wthirdbar_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.wthirdbar_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wthirdbar_h method, of class Horizon.
*/
@Test
public void testWthirdbar_h_0args() {
System.out.println("wthirdbar_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wthirdbar_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wfifteenbar_l method, of class Horizon.
*/
@Test
public void testWfifteenbar_l_double() {
System.out.println("wfifteenbar_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.wfifteenbar_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wfifteenbar_l method, of class Horizon.
*/
@Test
public void testWfifteenbar_l_0args() {
System.out.println("wfifteenbar_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wfifteenbar_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wfifteenbar_r method, of class Horizon.
*/
@Test
public void testWfifteenbar_r_double() {
System.out.println("wfifteenbar_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.wfifteenbar_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wfifteenbar_r method, of class Horizon.
*/
@Test
public void testWfifteenbar_r_0args() {
System.out.println("wfifteenbar_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wfifteenbar_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wfifteenbar_h method, of class Horizon.
*/
@Test
public void testWfifteenbar_h_double() {
System.out.println("wfifteenbar_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.wfifteenbar_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of wfifteenbar_h method, of class Horizon.
*/
@Test
public void testWfifteenbar_h_0args() {
System.out.println("wfifteenbar_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.wfifteenbar_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of dbthirdbar_l method, of class Horizon.
*/
@Test
public void testDbthirdbar_l_double() {
System.out.println("dbthirdbar_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.dbthirdbar_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of dbthirdbar_l method, of class Horizon.
*/
@Test
public void testDbthirdbar_l_0args() {
System.out.println("dbthirdbar_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.dbthirdbar_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of dbthirdbar_r method, of class Horizon.
*/
@Test
public void testDbthirdbar_r_double() {
System.out.println("dbthirdbar_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.dbthirdbar_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of dbthirdbar_r method, of class Horizon.
*/
@Test
public void testDbthirdbar_r_0args() {
System.out.println("dbthirdbar_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.dbthirdbar_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of dbthirdbar_h method, of class Horizon.
*/
@Test
public void testDbthirdbar_h_double() {
System.out.println("dbthirdbar_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.dbthirdbar_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of dbthirdbar_h method, of class Horizon.
*/
@Test
public void testDbthirdbar_h_0args() {
System.out.println("dbthirdbar_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.dbthirdbar_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of silttotal_r method, of class Horizon.
*/
@Test
public void testSilttotal_r_double() {
System.out.println("silttotal_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.silttotal_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of silttotal_r method, of class Horizon.
*/
@Test
public void testSilttotal_r_0args() {
System.out.println("silttotal_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.silttotal_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of claytotal_r method, of class Horizon.
*/
@Test
public void testClaytotal_r_double() {
System.out.println("claytotal_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.claytotal_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of claytotal_r method, of class Horizon.
*/
@Test
public void testClaytotal_r_0args() {
System.out.println("claytotal_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.claytotal_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph1to1h2o_l method, of class Horizon.
*/
@Test
public void testPh1to1h2o_l_double() {
System.out.println("ph1to1h2o_l");
double value = 0.0;
Horizon instance = new Horizon();
instance.ph1to1h2o_l(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph1to1h2o_l method, of class Horizon.
*/
@Test
public void testPh1to1h2o_l_0args() {
System.out.println("ph1to1h2o_l");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ph1to1h2o_l();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph1to1h2o_r method, of class Horizon.
*/
@Test
public void testPh1to1h2o_r_double() {
System.out.println("ph1to1h2o_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.ph1to1h2o_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph1to1h2o_r method, of class Horizon.
*/
@Test
public void testPh1to1h2o_r_0args() {
System.out.println("ph1to1h2o_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ph1to1h2o_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph1to1h2o_h method, of class Horizon.
*/
@Test
public void testPh1to1h2o_h_double() {
System.out.println("ph1to1h2o_h");
double value = 0.0;
Horizon instance = new Horizon();
instance.ph1to1h2o_h(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of ph1to1h2o_h method, of class Horizon.
*/
@Test
public void testPh1to1h2o_h_0args() {
System.out.println("ph1to1h2o_h");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.ph1to1h2o_h();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of chkey method, of class Horizon.
*/
@Test
public void testChkey_0args() {
System.out.println("chkey");
Horizon instance = new Horizon();
String expResult = "";
String result = instance.chkey();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of chkey method, of class Horizon.
*/
@Test
public void testChkey_String() {
System.out.println("chkey");
String chkey = "";
Horizon instance = new Horizon();
instance.chkey(chkey);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of fragvol_r method, of class Horizon.
*/
@Test
public void testFragvol_r_double() {
System.out.println("fragvol_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.fragvol_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of fragvol_r method, of class Horizon.
*/
@Test
public void testFragvol_r_0args() {
System.out.println("fragvol_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.fragvol_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setOutputColumns method, of class Horizon.
*/
@Test
public void testSetOutputColumns() {
System.out.println("setOutputColumns");
ArrayList<String> usedList = null;
Horizon instance = new Horizon();
instance.setOutputColumns(usedList);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of getTableHorizon method, of class Horizon.
*/
@Test
public void testGetTableHorizon() {
System.out.println("getTableHorizon");
Horizon instance = new Horizon();
TableHorizon expResult = null;
TableHorizon result = instance.getTableHorizon();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of getTableHorizonCalculations method, of class Horizon.
*/
@Test
public void testGetTableHorizonCalculations() {
System.out.println("getTableHorizonCalculations");
Horizon instance = new Horizon();
TableHorizonCalculations expResult = null;
TableHorizonCalculations result = instance.getTableHorizonCalculations();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setUsedColumns method, of class Horizon.
*/
@Test
public void testSetUsedColumns() {
System.out.println("setUsedColumns");
ArrayList<String> usedList = null;
Horizon instance = new Horizon();
instance.setUsedColumns(usedList);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setTextureGroupOutputColumns method, of class Horizon.
*/
@Test
public void testSetTextureGroupOutputColumns() {
System.out.println("setTextureGroupOutputColumns");
ArrayList<String> usedList = null;
Horizon instance = new Horizon();
instance.setTextureGroupOutputColumns(usedList);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setTextureGroupUsedColumns method, of class Horizon.
*/
@Test
public void testSetTextureGroupUsedColumns() {
System.out.println("setTextureGroupUsedColumns");
ArrayList<String> usedList = null;
Horizon instance = new Horizon();
instance.setTextureGroupUsedColumns(usedList);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hasSelectedReason method, of class Horizon.
*/
@Test
public void testHasSelectedReason() {
System.out.println("hasSelectedReason");
String reason = "";
Horizon instance = new Horizon();
boolean expResult = false;
boolean result = instance.hasSelectedReason(reason);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdepb_r method, of class Horizon.
*/
@Test
public void testHzdepb_r_0args() {
System.out.println("hzdepb_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzdepb_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdepb_r method, of class Horizon.
*/
@Test
public void testHzdepb_r_double() {
System.out.println("hzdepb_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzdepb_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdept_r method, of class Horizon.
*/
@Test
public void testHzdept_r_0args() {
System.out.println("hzdept_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzdept_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzdept_r method, of class Horizon.
*/
@Test
public void testHzdept_r_double() {
System.out.println("hzdept_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzdept_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzthk_r method, of class Horizon.
*/
@Test
public void testHzthk_r_0args() {
System.out.println("hzthk_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.hzthk_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of hzthk_r method, of class Horizon.
*/
@Test
public void testHzthk_r_double() {
System.out.println("hzthk_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.hzthk_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of kffact method, of class Horizon.
*/
@Test
public void testKffact_0args() {
System.out.println("kffact");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.kffact();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of kffact method, of class Horizon.
*/
@Test
public void testKffact_double() {
System.out.println("kffact");
double value = 0.0;
Horizon instance = new Horizon();
instance.kffact(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of kwfact method, of class Horizon.
*/
@Test
public void testKwfact_0args() {
System.out.println("kwfact");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.kwfact();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of kwfact method, of class Horizon.
*/
@Test
public void testKwfact_double() {
System.out.println("kwfact");
double value = 0.0;
Horizon instance = new Horizon();
instance.kwfact(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lsfact method, of class Horizon.
*/
@Test
public void testLsfact_double() {
System.out.println("lsfact");
double value = 0.0;
Horizon instance = new Horizon();
instance.lsfact(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of lsfact method, of class Horizon.
*/
@Test
public void testLsfact_0args() {
System.out.println("lsfact");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.lsfact();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of merge method, of class Horizon.
*/
@Test
public void testMerge() throws Exception {
System.out.println("merge");
Horizon mergeThisUnit = null;
Horizon instance = new Horizon();
instance.merge(mergeThisUnit);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of om_r method, of class Horizon.
*/
@Test
public void testOm_r_0args() {
System.out.println("om_r");
Horizon instance = new Horizon();
double expResult = 0.0;
double result = instance.om_r();
assertEquals(expResult, result, 0.0);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of om_r method, of class Horizon.
*/
@Test
public void testOm_r_double() {
System.out.println("om_r");
double value = 0.0;
Horizon instance = new Horizon();
instance.om_r(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of sandtotal_r method, of class Horizon.
*/
@Test
public void testSandtotal_r_0args() {
System.out.println("sandtotal_r");
Horizon instance = new Horizon();
double expResult = EvalResult.getDefaultDouble();
double result = instance.sandtotal_r();
assertEquals(true, EvalResult.testDefaultDouble(result));
}
/**
* Test of sandtotal_r method, of class Horizon.
*/
@Test
public void testSandtotal_r_double() {
System.out.println("sandtotal_r");
double value = -234.123;
Horizon instance = new Horizon();
instance.sandtotal_r(value);
assertEquals(-234.123, instance.sandtotal_r(), 0.0);
}
/**
* Test of selected method, of class Horizon.
*/
@Test
public void testSelected_0args() {
System.out.println("selected");
Horizon instance = new Horizon();
boolean expResult = false;
boolean result = instance.selected();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of selected method, of class Horizon.
*/
@Test
public void testSelected_boolean() {
System.out.println("selected");
boolean value = false;
Horizon instance = new Horizon();
instance.selected(value);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of selectedReason method, of class Horizon.
*/
@Test
public void testSelectedReason() {
System.out.println("selectedReason");
String reason = "";
Horizon instance = new Horizon();
instance.selectedReason(reason);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of toJSON method, of class Horizon.
*/
@Test
public void testToJSON() throws Exception {
System.out.println("toJSON");
Horizon instance = new Horizon();
JSONArray expResult = null;
JSONArray result = instance.toJSON();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}