Skip to content

Commit

Permalink
reactivating some ignored tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KnollFrank committed Dec 12, 2024
1 parent 3ede449 commit 0b1adf6
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 40 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
package net.osmand.router;

import org.junit.Ignore;

@Ignore
public class RouteResultPreparationNativeTest extends RouteResultPreparationTest {

public RouteResultPreparationNativeTest(String name, TestEntry te) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@
import static net.osmand.util.RouterUtilTest.getRoadId;
import static net.osmand.util.RouterUtilTest.getRoadStartPoint;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import net.osmand.NativeLibrary;
import net.osmand.PlatformUtil;
import net.osmand.binary.BinaryMapIndexReader;
import net.osmand.router.RoutingConfiguration.RoutingMemoryLimits;
import net.osmand.util.Algorithms;

import org.apache.commons.logging.Log;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
Expand All @@ -20,28 +36,10 @@
import java.util.Set;
import java.util.TreeSet;

import org.apache.commons.logging.Log;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import net.osmand.NativeLibrary;
import net.osmand.PlatformUtil;
import net.osmand.binary.BinaryMapIndexReader;
import net.osmand.router.RoutingConfiguration.RoutingMemoryLimits;
import net.osmand.util.Algorithms;

/**
* Created by yurkiss on 04.03.16.
*/

@Ignore
@RunWith(Parameterized.class)
public class RouteResultPreparationTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
package net.osmand.router;

import org.junit.Ignore;

@Ignore
public class RouteTestingNativeTest extends RouteTestingTest {

public RouteTestingNativeTest(String name, TestEntry te) {
Expand Down
30 changes: 14 additions & 16 deletions OsmAnd-java/src/test/java/net/osmand/router/RouteTestingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

import static net.osmand.util.RouterUtilTest.getNativeLibPath;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import net.osmand.NativeLibrary;
import net.osmand.binary.BinaryMapIndexReader;
import net.osmand.router.RoutingConfiguration.RoutingMemoryLimits;
import net.osmand.util.RouterUtilTest;

import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
Expand All @@ -15,22 +29,6 @@
import java.util.Set;
import java.util.TreeSet;

import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import net.osmand.NativeLibrary;
import net.osmand.binary.BinaryMapIndexReader;
import net.osmand.router.RoutingConfiguration.RoutingMemoryLimits;
import net.osmand.util.RouterUtilTest;

@Ignore
@RunWith(Parameterized.class)
public class RouteTestingTest {
private final TestEntry te;
Expand Down

0 comments on commit 0b1adf6

Please sign in to comment.