-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Created new test for running topology generation manually from t…
…he IDE, and removed main() from TopologyFileGenerator (#3609)
- Loading branch information
Showing
2 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...unctional-tests/src/test/java/io/confluent/ksql/test/ManualTopologyFileGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2019 Confluent Inc. | ||
* | ||
* Licensed under the Confluent Community License (the "License"); you may not use | ||
* this file except in compliance with the License. You may obtain a copy of the | ||
* License at | ||
* | ||
* http://www.confluent.io/confluent-community-license | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.confluent.ksql.test; | ||
|
||
import org.junit.Ignore; | ||
import org.junit.Test; | ||
|
||
/** | ||
* This test exists only to be able to generate topologies as part of the release process | ||
* It can be run manually from the IDE | ||
* It is deliberately excluded from the test suite | ||
*/ | ||
@Ignore | ||
public final class ManualTopologyFileGeneratorTest { | ||
|
||
@Test | ||
public void manuallyGenerateTopologies() throws Exception { | ||
TopologyFileGenerator.generateTopologies(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters