forked from loafle/openapi-generator-original
* replace removed forkMode * remove junit runner where it's not needed * update samples without skipping test files, but skip files named "FILES" * revert overwriting custom tests, add custom java tests to list * add one sample to CircleCI, fix various Java tests
18 lines
702 B
PowerShell
18 lines
702 B
PowerShell
#
|
|
# OpenAPI Petstore
|
|
# This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: "" \
|
|
# Version: 1.0.0
|
|
# Generated by OpenAPI Generator: https://openapi-generator.tech
|
|
#
|
|
|
|
Describe -tag 'PSPetstore' -name 'PSOrder' {
|
|
Context 'PSOrder' {
|
|
It 'Initialize-PSOrder' {
|
|
# a simple test to create an object
|
|
#$NewObject = Initialize-PSOrder -Id "TEST_VALUE" -PetId "TEST_VALUE" -Quantity "TEST_VALUE" -ShipDate "TEST_VALUE" -Status "TEST_VALUE" -Complete "TEST_VALUE"
|
|
#$NewObject | Should -BeOfType Order
|
|
#$NewObject.property | Should -Be 0
|
|
}
|
|
}
|
|
}
|