Skip to content

Commit 3f80778

Browse files
committed
Fix feature tests
1 parent 04d11c2 commit 3f80778

15 files changed

+27
-27
lines changed

tests/Feature/Type/array-key.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "array-key" (TypeLang\Mapper\Type\ArrayKeyType) type behavior
1+
Feature: Checking the "array-key" (TypeLang\Mapper\Platform\Type\ArrayKeyType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\ArrayKeyType"
4+
Given type "TypeLang\Mapper\Platform\Type\ArrayKeyType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/array.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "array" (TypeLang\Mapper\Type\ArrayType) type behavior
1+
Feature: Checking the "array" (TypeLang\Mapper\Platform\Type\ArrayType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\ArrayType"
4+
Given type "TypeLang\Mapper\Platform\Type\ArrayType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/bool-false.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "false" (TypeLang\Mapper\Type\BoolLiteralType) type behavior
1+
Feature: Checking the "false" (TypeLang\Mapper\Platform\Type\BoolLiteralType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\BoolLiteralType" with [false]
4+
Given type "TypeLang\Mapper\Platform\Type\BoolLiteralType" with [false]
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/bool-true.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "true" (TypeLang\Mapper\Type\BoolLiteralType) type behavior
1+
Feature: Checking the "true" (TypeLang\Mapper\Platform\Type\BoolLiteralType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\BoolLiteralType" with [true]
4+
Given type "TypeLang\Mapper\Platform\Type\BoolLiteralType" with [true]
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/bool.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "bool" (TypeLang\Mapper\Type\BoolType) type behavior
1+
Feature: Checking the "bool" (TypeLang\Mapper\Platform\Type\BoolType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\BoolType"
4+
Given type "TypeLang\Mapper\Platform\Type\BoolType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/float.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "float" (TypeLang\Mapper\Type\FloatType) type behavior
1+
Feature: Checking the "float" (TypeLang\Mapper\Platform\Type\FloatType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\FloatType"
4+
Given type "TypeLang\Mapper\Platform\Type\FloatType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/int-backed-enum.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Feature: Checking the "enum<int>" (TypeLang\Mapper\Type\BackedEnumType) type behavior
1+
Feature: Checking the "enum<int>" (TypeLang\Mapper\Platform\Type\BackedEnumType) type behavior
22

33
Background:
44
Given type "int-backed-enum"

tests/Feature/Type/int.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "int" (TypeLang\Mapper\Type\IntType) type behavior
1+
Feature: Checking the "int" (TypeLang\Mapper\Platform\Type\IntType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\IntType"
4+
Given type "TypeLang\Mapper\Platform\Type\IntType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/list.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "list" (TypeLang\Mapper\Type\ListType) type behavior
1+
Feature: Checking the "list" (TypeLang\Mapper\Platform\Type\ListType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\ListType"
4+
Given type "TypeLang\Mapper\Platform\Type\ListType"
55

66
Scenario Outline: Normalize matching "<value>"
77
When normalize

tests/Feature/Type/mixed.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "mixed" (TypeLang\Mapper\Type\MixedType) type behavior
1+
Feature: Checking the "mixed" (TypeLang\Mapper\Platform\Type\MixedType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\MixedType"
4+
Given type "TypeLang\Mapper\Platform\Type\MixedType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/null.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "null" (TypeLang\Mapper\Type\NullType) type behavior
1+
Feature: Checking the "null" (TypeLang\Mapper\Platform\Type\NullType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\NullType"
4+
Given type "TypeLang\Mapper\Platform\Type\NullType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/string-backed-enum.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Feature: Checking the "enum<string>" (TypeLang\Mapper\Type\BackedEnumType) type behavior
1+
Feature: Checking the "enum<string>" (TypeLang\Mapper\Platform\Type\BackedEnumType) type behavior
22

33
Background:
44
Given type "string-backed-enum"

tests/Feature/Type/string.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "string" (TypeLang\Mapper\Type\StringType) type behavior
1+
Feature: Checking the "string" (TypeLang\Mapper\Platform\Type\StringType) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\StringType"
4+
Given type "TypeLang\Mapper\Platform\Type\StringType"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/tests.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Feature: Checking the "<type>" (TypeLang\Mapper\Type\<TypeName>) type behavior
1+
Feature: Checking the "<type>" (TypeLang\Mapper\Platform\Type\<TypeName>) type behavior
22

33
Background:
4-
Given type "TypeLang\Mapper\Type\<TypeName>"
4+
Given type "TypeLang\Mapper\Platform\Type\<TypeName>"
55

66
Scenario Outline: Matching "<value>"
77
When normalize

tests/Feature/Type/unit-enum.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Feature: Checking the "enum" (TypeLang\Mapper\Type\UnitEnumType) type behavior
1+
Feature: Checking the "enum" (TypeLang\Mapper\Platform\Type\UnitEnumType) type behavior
22

33
Background:
44
Given type "unit-enum"

0 commit comments

Comments
 (0)