From 57d887c9df47fbd5e524e3d1572f54202fee7d1d Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Mon, 15 Jan 2018 18:05:55 +0100 Subject: [PATCH] Tests: Add noop test to prevent test failures Follow up for elastic/x-pack-elasticsearch@a15338415ac1bd06fdebad1bf93c5e2fec45de5c Original commit: elastic/x-pack-elasticsearch@c0a46a5977fe0dd28a955c8ab3760f0861b9394a --- .../smoketest/PreventFailingBuildIT.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java diff --git a/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java b/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java new file mode 100644 index 00000000000..2c2cdd044aa --- /dev/null +++ b/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java @@ -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. + } +}