[TEST] Add empty test case for FIPS

All other tests in security:cli are skipped on FIPS JVMs
This commit is contained in:
Tim Vernum 2018-08-08 13:47:18 +10:00
parent 6a7d5bce8a
commit 4cbcc1d659
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.xpack.security.cli;
import org.elasticsearch.test.ESTestCase;
public class TestSuiteCannotBeEmptyTests extends ESTestCase {
public void testIsHereSoThisSuiteIsNonEmpty() {
// This is needed on a FIPS JVM as the rest of the suite is skipped
}
}