Tests: Add noop test to prevent test failures

Follow up for elastic/x-pack-elasticsearch@a15338415a

Original commit: elastic/x-pack-elasticsearch@c0a46a5977
This commit is contained in:
Alexander Reelsen 2018-01-15 18:05:55 +01:00
parent 5eef187b19
commit 57d887c9df
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/*
* 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.smoketest;
import org.elasticsearch.test.ESIntegTestCase;
public class PreventFailingBuildIT extends ESIntegTestCase {
public void testSoThatTestsDoNotFail() {
// Noop
// This is required because if tests are not enable no
// tests will be run in the entire project and all tests will fail.
}
}