Use ExecType.MAPREDUCE instead of duplicate string to initialize PigServer in
tests
-----------------------------------------------------------------------------------
Key: PIG-101
URL: https://issues.apache.org/jira/browse/PIG-101
Project: Pig
Issue Type: Improvement
Affects Versions: 0.1.0
Reporter: Benjamin Francisoud
Priority: Trivial
In the tests code, there are lots of:
{code:java}
private String initString = "mapreduce";
@Test
public void testSomething() {
....
PigServer pig = new PigServer(initString);
....
}
{code}
It could be replace with
{code:java}
PigServer pig = new PigServer(ExecType.MAPREDUCE);
{code}
It would remove duplication in test.
Using a string makes the tests aware of the internal PigServer behavior.
It's really not a big deal hence the "trivial" :)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.