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

Kirk Lund closed GEODE-1462.
----------------------------

> Change tests with OS conditional early-outs to use org.junit.Assume
> -------------------------------------------------------------------
>
>                 Key: GEODE-1462
>                 URL: https://issues.apache.org/jira/browse/GEODE-1462
>             Project: Geode
>          Issue Type: Improvement
>          Components: tests
>            Reporter: Kirk Lund
>            Assignee: Kirk Lund
>            Priority: Minor
>             Fix For: 1.0.0-incubating.M3
>
>
> Example:
> {noformat}
> @Test
> public void testWarning() throws Exception {
>   if (!isLinux()) {
>     return;
>   }
> {noformat}
> This should instead use:
> {noformat}
> @Test
> public void testWarning() throws Exception {
>   assumeTrue(SystemUtils.isLinux());
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to