Skip to content

Commit

Permalink
[#1456] Correct type names for registry contract tests (#1457)
Browse files Browse the repository at this point in the history
* [#1456] Correct type names for registry contract tests

`ConditionMiningServicesRegitryTest` ->
`ConditionMiningServicesRegistryTest`

* [#1456] Correct type names for registry contract tests

`ConditionTransportServicesRegitryTest` ->
`ConditionTransportServicesRegistryTest`

* [#1456] Correct type names for registry contract tests

`ExpressionEvaluationServicesRegitryTest` ->
`ExpressionEvaluationServicesRegistryTest`

* [#1456] Correct type names for registry contract tests

`ExpressionParsingServicesRegitryTest` ->
`ExpressionParsingServicesRegistryTest`

* [#1456] Correct type names for registry contract tests

`ExpressionTokenAssessmentServicesRegitryTest` ->
`ExpressionTokenAssessmentServicesRegistryTest`

* [#1456] Correct type names for registry contract tests

`KeyKeepersRegitryTest` ->
`KeyKeepersRegistryTest`

* [#1456] Correct type names for registry contract tests

`KeyKeepersRegitryTest` ->
`KeyKeepersRegistryTest`

* [#1456] Correct type names for registry contract tests

`RequirementResolutionServicesRegitryTest` ->
`RequirementResolutionServicesRegistryTest`

* [#1456] Correct type names for registry contract tests

`RuntimeEnvironmentRegitryTest` ->
`RuntimeEnvironmentRegistryTest`

* [#1456] Correct type names for registry contract tests

`StreamCodecsRegitryTest` ->
`StreamCodecsRegistryTest`
  • Loading branch information
ruspl-afed authored Nov 13, 2024
1 parent 5946a1d commit e6d0b86
Show file tree
Hide file tree
Showing 21 changed files with 69 additions and 77 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class ConditionMiningServicesRegitryTest extends ReadOnlyCollectionTest<MinedConditions> {
public abstract class ConditionMiningServicesRegistryTest extends ReadOnlyCollectionTest<MinedConditions> {

@Override
protected final Supplier<Collection<MinedConditions>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class ConditionTransportServicesRegitryTest extends ReadOnlyCollectionTest<ConditionTransport> {
public abstract class ConditionTransportServicesRegistryTest extends ReadOnlyCollectionTest<ConditionTransport> {

@Override
protected final Supplier<Collection<ConditionTransport>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class ExpressionEvaluationServicesRegitryTest
public abstract class ExpressionEvaluationServicesRegistryTest
extends ReadOnlyCollectionTest<ExpressionEvaluationService> {

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class ExpressionParsingServicesRegitryTest extends ReadOnlyCollectionTest<ExpressionParsingService> {
public abstract class ExpressionParsingServicesRegistryTest extends ReadOnlyCollectionTest<ExpressionParsingService> {

@Override
protected final Supplier<Collection<ExpressionParsingService>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class ExpressionTokenAssessmentServicesRegitryTest
public abstract class ExpressionTokenAssessmentServicesRegistryTest
extends ReadOnlyCollectionTest<ExpressionTokenAssessmentService> {

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class KeyKeepersRegitryTest extends ReadOnlyCollectionTest<KeyKeeper> {
public abstract class KeyKeepersRegistryTest extends ReadOnlyCollectionTest<KeyKeeper> {

@Override
protected final Supplier<Collection<KeyKeeper>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class PermissionEmittingServicesRegitryTest extends ReadOnlyCollectionTest<PermissionEmittingService> {
public abstract class PermissionEmittingServicesRegistryTest extends ReadOnlyCollectionTest<PermissionEmittingService> {

@Override
protected final Supplier<Collection<PermissionEmittingService>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class RequirementResolutionServicesRegitryTest
public abstract class RequirementResolutionServicesRegistryTest
extends ReadOnlyCollectionTest<PermissionEmittingService> {

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class RuntimeEnvironmentRegitryTest extends ReadOnlyCollectionTest<RuntimeEnvironment> {
public abstract class RuntimeEnvironmentRegistryTest extends ReadOnlyCollectionTest<RuntimeEnvironment> {

@Override
protected final Supplier<Collection<RuntimeEnvironment>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class StreamCodecsRegitryTest extends ReadOnlyCollectionTest<StreamCodec> {
public abstract class StreamCodecsRegistryTest extends ReadOnlyCollectionTest<StreamCodec> {

@Override
protected final Supplier<Collection<StreamCodec>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.StreamCodecsRegitryTest;
import org.eclipse.passage.lic.api.tests.StreamCodecsRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedCodecsRegistryTest extends StreamCodecsRegitryTest {
public final class SealedCodecsRegistryTest extends StreamCodecsRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.RequirementResolutionServicesRegitryTest;
import org.eclipse.passage.lic.api.tests.RequirementResolutionServicesRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedConitionMiningServicesRegistryTest extends RequirementResolutionServicesRegitryTest {
public final class SealedConitionMiningServicesRegistryTest extends RequirementResolutionServicesRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.ExpressionParsingServicesRegitryTest;
import org.eclipse.passage.lic.api.tests.ExpressionEvaluationServicesRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedExpressionEvaluatorsServiceRegistryTest extends ExpressionParsingServicesRegitryTest {
public final class SealedExpressionEvaluatorsServiceRegistryTest extends ExpressionEvaluationServicesRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.ExpressionParsingServicesRegitryTest;
import org.eclipse.passage.lic.api.tests.ExpressionParsingServicesRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedExpressionParsersRegistryTest extends ExpressionParsingServicesRegitryTest {
public final class SealedExpressionParsersRegistryTest extends ExpressionParsingServicesRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.KeyKeepersRegitryTest;
import org.eclipse.passage.lic.api.tests.KeyKeepersRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedKeyKeepersRegistryTest extends KeyKeepersRegitryTest {
public final class SealedKeyKeepersRegistryTest extends KeyKeepersRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.PermissionEmittingServicesRegitryTest;
import org.eclipse.passage.lic.api.tests.PermissionEmittingServicesRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedPermissionsExaminationServicesRegistryTest extends PermissionEmittingServicesRegitryTest {
public final class SealedPermissionEmittingServicesRegistryTest extends PermissionEmittingServicesRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down
Loading

0 comments on commit e6d0b86

Please sign in to comment.