File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
codegen/src/test/java/software/amazon/awssdk/codegen/poet/client Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 26
26
import static software .amazon .awssdk .codegen .poet .ClientTestModels .opsWithSigv4a ;
27
27
import static software .amazon .awssdk .codegen .poet .ClientTestModels .presignedUrlExtensionModels ;
28
28
import static software .amazon .awssdk .codegen .poet .ClientTestModels .serviceWithCustomContextParamsModels ;
29
+ import static software .amazon .awssdk .codegen .poet .ClientTestModels .presignedUrlManagerModels ;
29
30
import static software .amazon .awssdk .codegen .poet .ClientTestModels .queryServiceModels ;
30
31
import static software .amazon .awssdk .codegen .poet .ClientTestModels .restJsonServiceModels ;
31
32
import static software .amazon .awssdk .codegen .poet .ClientTestModels .rpcv2ServiceModels ;
@@ -118,6 +119,12 @@ public void asyncClientBatchManager() {
118
119
ClassSpec aSyncClientBatchManager = createAsyncClientClass (batchManagerModels ());
119
120
assertThat (aSyncClientBatchManager , generatesTo ("test-batchmanager-async.java" ));
120
121
}
122
+
123
+ @ Test
124
+ public void asyncClientPresignedUrlManager () {
125
+ ClassSpec asyncClientPresignedUrlManager = createAsyncClientClass (presignedUrlManagerModels ());
126
+ assertThat (asyncClientPresignedUrlManager , generatesTo ("test-presignedurl-async.java" ));
127
+ }
121
128
122
129
@ Test
123
130
public void asyncClientPresignedUrlExtension () {
You can’t perform that action at this time.
0 commit comments