Skip to content

Commit 90b0645

Browse files
committed
fix tests
1 parent 61385a4 commit 90b0645

File tree

14 files changed

+0
-191
lines changed

14 files changed

+0
-191
lines changed

samples/client/petstore/java-helidon-client/mp/src/test/java/org/openapitools/client/api/FakeApiTest.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,6 @@ public void fakeHealthGetTest() throws Exception {
7070
//assertNotNull(response);
7171
}
7272

73-
/**
74-
* test http signature authentication
75-
*
76-
* @throws ApiException
77-
* if the Api call fails
78-
*/
79-
@Test
80-
public void fakeHttpSignatureTestTest() throws Exception {
81-
//void response = client.fakeHttpSignatureTest(pet, query1, header1);
82-
//assertNotNull(response);
83-
}
84-
8573
/**
8674
* @throws ApiException
8775
* if the Api call fails

samples/client/petstore/java-helidon-client/se/src/test/java/org/openapitools/client/api/FakeApiTest.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -79,27 +79,6 @@ public void fakeHealthGetTest() {
7979
// TODO: test validations
8080
}
8181

82-
/**
83-
* test http signature authentication
84-
*/
85-
@Test
86-
public void fakeHttpSignatureTestTest() {
87-
// TODO - assign values to the input arguments.
88-
Pet pet = null;
89-
// TODO - assign values to the input arguments.
90-
String query1 = null;
91-
// TODO - assign values to the input arguments.
92-
String header1 = null;
93-
94-
// TODO - uncomment the following two lines to invoke the service with valid parameters.
95-
//ApiResponse<Void> response = api.fakeHttpSignatureTest(pet, query1, header1);
96-
//response.webClientResponse().await();
97-
// TODO - check for appropriate return status
98-
// assertThat("Return status", response.get().status().code(), is(expectedStatus));
99-
100-
// TODO: test validations
101-
}
102-
10382
/**
10483
*
10584
* Test serialization of outer boolean types

samples/client/petstore/java/feign/src/test/java/org/openapitools/client/api/FakeApiTest.java

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -44,41 +44,6 @@ void fakeHealthGetTest() {
4444

4545
// TODO: test validations
4646
}
47-
48-
49-
/**
50-
* test http signature authentication
51-
*
52-
*
53-
*/
54-
@Test
55-
void fakeHttpSignatureTestTest() {
56-
Pet pet = null;
57-
String query1 = null;
58-
String header1 = null;
59-
// api.fakeHttpSignatureTest(pet, query1, header1);
60-
61-
// TODO: test validations
62-
}
63-
64-
/**
65-
* test http signature authentication
66-
*
67-
*
68-
*
69-
* This tests the overload of the method that uses a Map for query parameters instead of
70-
* listing them out individually.
71-
*/
72-
@Test
73-
void fakeHttpSignatureTestTestQueryMap() {
74-
Pet pet = null;
75-
String header1 = null;
76-
FakeApi.FakeHttpSignatureTestQueryParams queryParams = new FakeApi.FakeHttpSignatureTestQueryParams()
77-
.query1(null);
78-
// api.fakeHttpSignatureTest(pet, header1, queryParams);
79-
80-
// TODO: test validations
81-
}
8247

8348
/**
8449
*

samples/client/petstore/java/webclient-jakarta/src/test/java/org/openapitools/client/api/FakeApiTest.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,7 @@ public void fakeHealthGetTest() {
5454

5555
// TODO: test validations
5656
}
57-
58-
/**
59-
* test http signature authentication
60-
*
61-
*
62-
*/
63-
@Test
64-
public void fakeHttpSignatureTestTest() {
65-
Pet pet = null;
66-
String query1 = null;
67-
String header1 = null;
68-
api.fakeHttpSignatureTest(pet, query1, header1).block();
6957

70-
// TODO: test validations
71-
}
72-
7358
/**
7459
*
7560
*

samples/client/petstore/java/webclient/src/test/java/org/openapitools/client/api/FakeApiTest.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,6 @@ public void fakeHealthGetTest() {
5555
// TODO: test validations
5656
}
5757

58-
/**
59-
* test http signature authentication
60-
*
61-
*
62-
*/
63-
@Test
64-
public void fakeHttpSignatureTestTest() {
65-
Pet pet = null;
66-
String query1 = null;
67-
String header1 = null;
68-
api.fakeHttpSignatureTest(pet, query1, header1).block();
69-
70-
// TODO: test validations
71-
}
72-
7358
/**
7459
*
7560
*

samples/client/petstore/javascript-apollo/test/api/FakeApi.spec.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,6 @@
5858
done();
5959
});
6060
});
61-
describe('fakeHttpSignatureTest', function() {
62-
it('should call fakeHttpSignatureTest successfully', function(done) {
63-
//uncomment below and update the code to test fakeHttpSignatureTest
64-
//instance.fakeHttpSignatureTest(function(error) {
65-
// if (error) throw error;
66-
//expect().to.be();
67-
//});
68-
done();
69-
});
70-
});
7161
describe('fakeOuterBooleanSerialize', function() {
7262
it('should call fakeOuterBooleanSerialize successfully', function(done) {
7363
//uncomment below and update the code to test fakeOuterBooleanSerialize

samples/client/petstore/javascript-es6/test/api/FakeApi.spec.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,6 @@
5858
done();
5959
});
6060
});
61-
describe('fakeHttpSignatureTest', function() {
62-
it('should call fakeHttpSignatureTest successfully', function(done) {
63-
//uncomment below and update the code to test fakeHttpSignatureTest
64-
//instance.fakeHttpSignatureTest(function(error) {
65-
// if (error) throw error;
66-
//expect().to.be();
67-
//});
68-
done();
69-
});
70-
});
7161
describe('fakeOuterBooleanSerialize', function() {
7262
it('should call fakeOuterBooleanSerialize successfully', function(done) {
7363
//uncomment below and update the code to test fakeOuterBooleanSerialize

samples/client/petstore/javascript-promise-es6/test/api/FakeApi.spec.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,6 @@
5858
done();
5959
});
6060
});
61-
describe('fakeHttpSignatureTest', function() {
62-
it('should call fakeHttpSignatureTest successfully', function(done) {
63-
//uncomment below and update the code to test fakeHttpSignatureTest
64-
//instance.fakeHttpSignatureTest(function(error) {
65-
// if (error) throw error;
66-
//expect().to.be();
67-
//});
68-
done();
69-
});
70-
});
7161
describe('fakeOuterBooleanSerialize', function() {
7262
it('should call fakeOuterBooleanSerialize successfully', function(done) {
7363
//uncomment below and update the code to test fakeOuterBooleanSerialize

samples/client/petstore/php/OpenAPIClient-php/test/Api/FakeApiTest.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,6 @@ public function testFakeHealthGet()
8383
$this->markTestIncomplete('Not implemented');
8484
}
8585

86-
/**
87-
* Test case for fakeHttpSignatureTest
88-
*
89-
* test http signature authentication.
90-
*
91-
*/
92-
public function testFakeHttpSignatureTest()
93-
{
94-
// TODO: implement
95-
$this->markTestIncomplete('Not implemented');
96-
}
97-
9886
/**
9987
* Test case for fakeOuterBooleanSerialize
10088
*

samples/openapi3/client/petstore/dart-dio/petstore_client_lib_fake-json_serializable/test/fake_api_test.dart

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ void main() {
1414
// TODO
1515
});
1616

17-
// test http signature authentication
18-
//
19-
//Future fakeHttpSignatureTest(Pet pet, { String query1, String header1 }) async
20-
test('test fakeHttpSignatureTest', () async {
21-
// TODO
22-
});
23-
2417
// Test serialization of outer boolean types
2518
//
2619
//Future<bool> fakeOuterBooleanSerialize({ bool body }) async

0 commit comments

Comments
 (0)