Remove dead code
This commit is contained in:
parent
349c35e1cd
commit
43b2d89703
@ -46,7 +46,6 @@ import org.testng.annotations.BeforeMethod;
|
|||||||
import org.testng.annotations.BeforeTest;
|
import org.testng.annotations.BeforeTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
import com.google.refine.exporters.CsvExporter;
|
|
||||||
import com.google.refine.model.Cell;
|
import com.google.refine.model.Cell;
|
||||||
import com.google.refine.model.Project;
|
import com.google.refine.model.Project;
|
||||||
import com.google.refine.model.Row;
|
import com.google.refine.model.Row;
|
||||||
@ -65,12 +64,8 @@ public class RowTests extends RefineTest {
|
|||||||
Project project;
|
Project project;
|
||||||
Properties options;
|
Properties options;
|
||||||
|
|
||||||
// System Under Test
|
|
||||||
CsvExporter SUT;
|
|
||||||
|
|
||||||
@BeforeMethod
|
@BeforeMethod
|
||||||
public void SetUp() {
|
public void SetUp() {
|
||||||
SUT = new CsvExporter();
|
|
||||||
writer = new StringWriter();
|
writer = new StringWriter();
|
||||||
project = new Project();
|
project = new Project();
|
||||||
options = mock(Properties.class);
|
options = mock(Properties.class);
|
||||||
@ -78,7 +73,6 @@ public class RowTests extends RefineTest {
|
|||||||
|
|
||||||
@AfterMethod
|
@AfterMethod
|
||||||
public void TearDown() {
|
public void TearDown() {
|
||||||
SUT = null;
|
|
||||||
writer = null;
|
writer = null;
|
||||||
project = null;
|
project = null;
|
||||||
options = null;
|
options = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user