-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ps-md2/feature/model-validators
Feature/model validators
- Loading branch information
Showing
10 changed files
with
154 additions
and
75 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
...mework.tests/models/de/wwu/md2/framework/tests/dsl/model/validator/LowercaseAttribute.md2
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,5 @@ | ||
package TestProject.models | ||
|
||
entity LowerCaseTest { | ||
Test2: string | ||
} |
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ enum DrugStatus { | |
|
||
entity Pharmacy { | ||
drug: Drug (default "hallo") | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
...mework.tests/models/de/wwu/md2/framework/tests/dsl/model/validator/RepeatedParameters.md2
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,5 @@ | ||
package TestProject.models | ||
|
||
entity RepeatedParams { | ||
test3: integer (optional, optional) | ||
} |
5 changes: 5 additions & 0 deletions
5
...ework.tests/models/de/wwu/md2/framework/tests/dsl/model/validator/UnsupportedFeatures.md2
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,5 @@ | ||
package TestProject.models | ||
|
||
entity UnsupportedFeatures { | ||
testDate: date (max 2014-10-12) | ||
} |
5 changes: 5 additions & 0 deletions
5
...framework.tests/models/de/wwu/md2/framework/tests/dsl/model/validator/UppercaseEntity.md2
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,5 @@ | ||
package TestProject.models | ||
|
||
entity upperCaseTest { | ||
test1: string | ||
} |
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
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
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