Skip to content
Snippets Groups Projects
Commit 88d94ff0 authored by Peter Alexander's avatar Peter Alexander
Browse files

Remove junit

parent 3a26aee6
No related branches found
No related tags found
No related merge requests found
......@@ -241,7 +241,7 @@ public class ModelMain {
// DEBUG code
if (!(country.getCountryName().equals("United States of America") || country.getCountryName().equals("Russian Federationxx"))) { //|| country.getCountryName().equals("China")
if (!(country.getCountryName().equals("United States of Americaxx") || country.getCountryName().equals("Russian Federationxx") || country.getCountryName().equals("China")) ) { //|| country.getCountryName().equals("China")
continue;
}
......
package ac.sac.raster;
import org.junit.Test;
//import org.junit.Test;
import ac.ed.lurg.yield.YieldRaster;
public class RasterSetTest {
@Test
// @Test
public void test() {
YieldRaster dataset = new YieldRaster(new RasterHeaderDetails(720,360,-180,-90,0.5,0.5,""));
double y = dataset.getYCoordin(new RasterKey(0,179));
System.out.println("y=" +y);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment