This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 29e65e03ed8452886274ec9b01b95ebe44f705f4 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Apr 27 15:26:33 2021 +0200 Camel-Kamelets catalog: Add .gitignore --- .../org/apache/camel/kamelets/catalog/KameletsCatalogTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java b/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java index a5eee78..befc1ca 100644 --- a/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java +++ b/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java @@ -27,22 +27,22 @@ public class KameletsCatalogTest { static KameletsCatalog catalog; @BeforeAll - public static void createCamelCatalog() throws IOException { + public static void createKameletsCatalog() throws IOException { catalog = new KameletsCatalog(); } @Test - void testConnectors() throws Exception { + void testKameletsSize() throws Exception { assertEquals(62, catalog.getKamelets().size()); } @Test - void testConnectorsByName() throws Exception { + void testKameletsByName() throws Exception { assertEquals(13, catalog.getKameletsByName("aws").size()); } @Test - void testConnectorsByType() throws Exception { + void testKameletsByType() throws Exception { assertEquals(6, catalog.getKameletsByType("action").size()); } }