mirror of
https://github.com/marcin-szczepanski/jFuzzyLogic.git
synced 2024-11-03 17:50:28 +01:00
moved tests, ignored for now
This commit is contained in:
parent
7bf987433a
commit
12a636a8ac
@ -1,13 +1,11 @@
|
||||
package net.sourceforge.jFuzzyLogic.testCases;
|
||||
package net.sourceforge.jFuzzyLogic;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import net.sourceforge.jFuzzyLogic.FIS;
|
||||
import net.sourceforge.jFuzzyLogic.Gpr;
|
||||
import net.sourceforge.jFuzzyLogic.JFuzzyLogic;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
@Ignore
|
||||
public class TestCaseCommandLine extends TestCase {
|
||||
|
||||
public static final double EPSILON = 1e-6;
|
@ -5,27 +5,26 @@
|
||||
*
|
||||
* @author pcingola@users.sourceforge.net
|
||||
*/
|
||||
package net.sourceforge.jFuzzyLogic.testCases;
|
||||
|
||||
import java.util.List;
|
||||
package net.sourceforge.jFuzzyLogic;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import net.sourceforge.jFuzzyLogic.FIS;
|
||||
import net.sourceforge.jFuzzyLogic.FunctionBlock;
|
||||
import net.sourceforge.jFuzzyLogic.Gpr;
|
||||
import net.sourceforge.jFuzzyLogic.rule.Rule;
|
||||
import net.sourceforge.jFuzzyLogic.rule.RuleBlock;
|
||||
import net.sourceforge.jFuzzyLogic.rule.Variable;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Main testing class
|
||||
*
|
||||
* @author pcingola@users.sourceforge.net
|
||||
*
|
||||
*/
|
||||
|
||||
@Ignore
|
||||
public class TestCaseJfuzzy extends TestCase {
|
||||
|
||||
static double EPSILON = 0.000001; // A small number
|
@ -1,14 +1,12 @@
|
||||
package net.sourceforge.jFuzzyLogic.testCases;
|
||||
package net.sourceforge.jFuzzyLogic;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import net.sourceforge.jFuzzyLogic.FIS;
|
||||
import net.sourceforge.jFuzzyLogic.FunctionBlock;
|
||||
import net.sourceforge.jFuzzyLogic.Gpr;
|
||||
|
||||
import org.antlr.runtime.RecognitionException;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
@Ignore
|
||||
public class TestCaseTipper extends TestCase {
|
||||
|
||||
public static final double EPSILON = 0.001; // Error tolerated
|
@ -5,14 +5,12 @@
|
||||
*
|
||||
* @author pcingola@users.sourceforge.net
|
||||
*/
|
||||
package net.sourceforge.jFuzzyLogic.testCases;
|
||||
package net.sourceforge.jFuzzyLogic;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import net.sourceforge.jFuzzyLogic.FIS;
|
||||
import net.sourceforge.jFuzzyLogic.Gpr;
|
||||
import net.sourceforge.jFuzzyLogic.rule.Variable;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
@ -21,6 +19,8 @@ import org.junit.Test;
|
||||
* @author pcingola@users.sourceforge.net
|
||||
*
|
||||
*/
|
||||
|
||||
@Ignore
|
||||
public class TestCaseZzz extends TestCase {
|
||||
|
||||
static double EPSILON = 0.000001; // A small number
|
@ -1,11 +1,10 @@
|
||||
package net.sourceforge.jFuzzyLogic.testCases;
|
||||
package net.sourceforge.jFuzzyLogic;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
import net.sourceforge.jFuzzyLogic.testCases.TestCaseCommandLine;
|
||||
import net.sourceforge.jFuzzyLogic.testCases.TestCaseJfuzzy;
|
||||
import net.sourceforge.jFuzzyLogic.testCases.TestCaseTipper;
|
||||
import org.junit.Ignore;
|
||||
|
||||
@Ignore
|
||||
public class TestSuiteAll {
|
||||
|
||||
public static void main(String args[]) {
|
Loading…
Reference in New Issue
Block a user