-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Device Management Keystore Step Definition Tests
Signed-off-by: Alberto Codutti <alberto.codutti@eurotech.com>
- Loading branch information
Showing
6 changed files
with
263 additions
and
26 deletions.
There are no files selected for viewing
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
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
36 changes: 36 additions & 0 deletions
36
.../service/jobEngine/stepDefinitions/RunJobEngineServiceKeystoreStepDefinitionsI9nTest.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,36 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2019, 2021 Eurotech and/or its affiliates and others | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Eurotech - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.kapua.integration.service.jobEngine.stepDefinitions; | ||
|
||
import cucumber.api.CucumberOptions; | ||
import org.eclipse.kapua.qa.common.cucumber.CucumberWithProperties; | ||
import org.junit.runner.RunWith; | ||
|
||
@RunWith(CucumberWithProperties.class) | ||
@CucumberOptions( | ||
features = { | ||
"classpath:features/jobEngine/JobEngineServiceKeystoreStepDefinitionsI9n.feature" | ||
}, | ||
glue = {"org.eclipse.kapua.service.job.steps", | ||
"org.eclipse.kapua.service.user.steps", | ||
"org.eclipse.kapua.qa.common", | ||
"org.eclipse.kapua.service.account.steps", | ||
"org.eclipse.kapua.service.device.registry.steps", | ||
}, | ||
plugin = {"pretty", | ||
"html:target/cucumber/JobEngineOnlineDeviceI9n", | ||
"json:target/JobEngineOnlineDeviceI9n_cucumber.json"}, | ||
strict = true, | ||
monochrome = true) | ||
public class RunJobEngineServiceKeystoreStepDefinitionsI9nTest { | ||
} |
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
Oops, something went wrong.