forked from loafle/openapi-generator-original
update sample tests, fix Java tests (#20300)
* 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
This commit is contained in:
@@ -18,7 +18,7 @@ void test_Pet_id_is_assigned_from_json()
|
||||
|
||||
|
||||
|
||||
bourne::json input =
|
||||
bourne::json input =
|
||||
{
|
||||
"id", 1
|
||||
};
|
||||
@@ -36,7 +36,7 @@ void test_Pet_name_is_assigned_from_json()
|
||||
{
|
||||
|
||||
|
||||
bourne::json input =
|
||||
bourne::json input =
|
||||
{
|
||||
"name", "hello"
|
||||
};
|
||||
@@ -59,7 +59,7 @@ void test_Pet_status_is_assigned_from_json()
|
||||
{
|
||||
|
||||
|
||||
bourne::json input =
|
||||
bourne::json input =
|
||||
{
|
||||
"status", "hello"
|
||||
};
|
||||
@@ -82,7 +82,7 @@ void test_Pet_id_is_converted_to_json()
|
||||
|
||||
|
||||
|
||||
bourne::json input =
|
||||
bourne::json input =
|
||||
{
|
||||
"id", 1
|
||||
};
|
||||
@@ -102,7 +102,7 @@ void test_Pet_id_is_converted_to_json()
|
||||
void test_Pet_name_is_converted_to_json()
|
||||
{
|
||||
|
||||
bourne::json input =
|
||||
bourne::json input =
|
||||
{
|
||||
"name", "hello"
|
||||
};
|
||||
@@ -125,7 +125,7 @@ void test_Pet_name_is_converted_to_json()
|
||||
void test_Pet_status_is_converted_to_json()
|
||||
{
|
||||
|
||||
bourne::json input =
|
||||
bourne::json input =
|
||||
{
|
||||
"status", "hello"
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user