Kirk Lund created GEODE-1462:
--------------------------------
Summary: 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: Bug
Components: ts, tests
Reporter: Kirk Lund
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.3.4#6332)