TestContainers :: ArangoDB

ArangoDB container for testing under Testcontainers.

Лицензия

Лицензия

Категории

Категории

Java Языки программирования Контейнер
Группа

Группа

io.github.ganchix
Идентификатор

Идентификатор

testcontainers-java-module-arangodb
Последняя версия

Последняя версия

0.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

TestContainers :: ArangoDB
ArangoDB container for testing under Testcontainers.
Ссылка на сайт

Ссылка на сайт

https://github.com/ganchix/testcontainers-java-module-arangodb
Система контроля версий

Система контроля версий

https://github.com/ganchix/testcontainers-java-module-arangodb/tree/master

Скачать testcontainers-java-module-arangodb

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/io.github.ganchix/testcontainers-java-module-arangodb/ -->
<dependency>
    <groupId>io.github.ganchix</groupId>
    <artifactId>testcontainers-java-module-arangodb</artifactId>
    <version>0.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.ganchix/testcontainers-java-module-arangodb/
implementation 'io.github.ganchix:testcontainers-java-module-arangodb:0.0.1'
// https://jarcasting.com/artifacts/io.github.ganchix/testcontainers-java-module-arangodb/
implementation ("io.github.ganchix:testcontainers-java-module-arangodb:0.0.1")
'io.github.ganchix:testcontainers-java-module-arangodb:jar:0.0.1'
<dependency org="io.github.ganchix" name="testcontainers-java-module-arangodb" rev="0.0.1">
  <artifact name="testcontainers-java-module-arangodb" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.ganchix', module='testcontainers-java-module-arangodb', version='0.0.1')
)
libraryDependencies += "io.github.ganchix" % "testcontainers-java-module-arangodb" % "0.0.1"
[io.github.ganchix/testcontainers-java-module-arangodb "0.0.1"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.testcontainers : testcontainers jar 1.6.0
com.arangodb : arangodb-java-driver jar 4.3.0

provided (1)

Идентификатор библиотеки Тип Версия
org.projectlombok : lombok jar 1.16.20

test (1)

Идентификатор библиотеки Тип Версия
ch.qos.logback : logback-classic jar 1.2.3

Модули Проекта

Данный проект не имеет модулей.

TestContainers ArangoDB testing module Build Status codecov Maven Central GitHub stars

Testcontainers module for ArangoDB.

Table of Contents

Overview

See testcontainers.org for more information about Testcontainers.

Getting started

Add dependency

<dependency>
    <groupId>io.github.ganchix</groupId>
    <artifactId>testcontainers-java-module-arangodb</artifactId>
    <version>0.0.1</version>
</dependency>

Gradle

compile group: 'io.github.ganchix', name: 'testcontainers-java-module-arangodb', version: '0.0.1'

Code example

Running ArangoDB during a test:

public class SomeTest {


	@Rule
	public ArangoDBContainer arangoDBContainer = new ArangoDBContainer().withoutAuthentication();

    
	@Test
	public void simpleTestWithClientCreation() {
		ArangoDB arangoDB = arangoDBContainer.getArangoDB();
		assertNotNull(arangoDB.getVersion().getServer());
	}
}

License

Testcontainers module for ArangoDB is licensed under the MIT License. See LICENSE for details.

Copyright (c) 2018 Rafael Ríos Moya

Версии библиотеки

Версия
0.0.1