You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Alan Gates (JIRA)" <ji...@apache.org> on 2009/11/12 05:53:39 UTC

[jira] Assigned: (PIG-101) Use ExecType.MAPREDUCE instead of duplicate string to initialize PigServer in tests

     [ https://issues.apache.org/jira/browse/PIG-101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alan Gates reassigned PIG-101:
------------------------------

    Assignee: Benjamin Francisoud

> 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
>            Assignee: Benjamin Francisoud
>            Priority: Trivial
>             Fix For: 0.1.0
>
>         Attachments: PIG-101-v01.patch, PIG-101-v02.patch
>
>
> 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.