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:
martin-mfg
2024-12-15 10:09:58 +01:00
committed by GitHub
parent 4e5a828c12
commit d87a70dd93
2192 changed files with 12623 additions and 9212 deletions

View File

@@ -18,7 +18,7 @@ void test_Order_id_is_assigned_from_json()
bourne::json input =
bourne::json input =
{
"id", 1
};
@@ -39,7 +39,7 @@ void test_Order_petId_is_assigned_from_json()
bourne::json input =
bourne::json input =
{
"petId", 1
};
@@ -54,7 +54,7 @@ void test_Order_petId_is_assigned_from_json()
void test_Order_quantity_is_assigned_from_json()
{
bourne::json input =
bourne::json input =
{
"quantity", 1
};
@@ -90,7 +90,7 @@ void test_Order_status_is_assigned_from_json()
{
bourne::json input =
bourne::json input =
{
"status", "hello"
};
@@ -113,7 +113,7 @@ void test_Order_complete_is_assigned_from_json()
bourne::json input =
bourne::json input =
{
"complete", true
};
@@ -134,7 +134,7 @@ void test_Order_id_is_converted_to_json()
bourne::json input =
bourne::json input =
{
"id", 1
};
@@ -155,7 +155,7 @@ void test_Order_petId_is_converted_to_json()
bourne::json input =
bourne::json input =
{
"petId", 1
};
@@ -173,7 +173,7 @@ void test_Order_petId_is_converted_to_json()
void test_Order_quantity_is_converted_to_json()
{
bourne::json input =
bourne::json input =
{
"quantity", 1
};
@@ -204,7 +204,7 @@ void test_Order_shipDate_is_converted_to_json()
void test_Order_status_is_converted_to_json()
{
bourne::json input =
bourne::json input =
{
"status", "hello"
};
@@ -226,7 +226,7 @@ void test_Order_complete_is_converted_to_json()
{
bourne::json input =
bourne::json input =
{
"complete", true
};