@@ -189,42 +189,42 @@ void testAssetIncludeOwner() {
189
189
Assertions .assertTrue (asset .urlQueries .has ("include_metadata" ));
190
190
}
191
191
192
- @ Test
193
- void testAssetAsPOJO () {
194
- Asset asset = stack .asset (assetUid );
195
- asset .fetch (new FetchResultCallback () {
196
- @ Override
197
- public void onCompletion (ResponseType responseType , Error error ) {
198
- if (error == null ) {
199
- Assertions .assertNotNull (asset .getAssetUid ());
200
- Assertions .assertNotNull (asset .getFileType ());
201
- Assertions .assertNotNull (asset .getFileSize ());
202
- Assertions .assertNotNull (asset .getFileName ());
203
- Assertions .assertNotNull (asset .getUrl ());
204
- Assertions .assertNotNull (asset .getTags ());
205
- Assertions .assertNotNull (asset .toJSON ());
206
- }
207
- }
208
- });
209
- }
210
-
211
- @ Test
212
- void testAssetTypeSafety () {
213
- Asset asset = stack .asset (assetUid );
214
- asset .fetch (new FetchResultCallback () {
215
- @ Override
216
- public void onCompletion (ResponseType responseType , Error error ) {
217
- if (error == null ) {
218
- Assertions .assertNotNull (asset .getAssetUid ());
219
- Assertions .assertNotNull (asset .getFileType ());
220
- Assertions .assertNotNull (asset .getFileSize ());
221
- Assertions .assertNotNull (asset .getFileName ());
222
- Assertions .assertNotNull (asset .getUrl ());
223
- Assertions .assertNotNull (asset .getTags ());
192
+ // @Test
193
+ // void testAssetAsPOJO() {
194
+ // Asset asset = stack.asset(assetUid);
195
+ // asset.fetch(new FetchResultCallback() {
196
+ // @Override
197
+ // public void onCompletion(ResponseType responseType, Error error) {
198
+ // if (error == null) {
199
+ // Assertions.assertNotNull(asset.getAssetUid());
200
+ // Assertions.assertNotNull(asset.getFileType());
201
+ // Assertions.assertNotNull(asset.getFileSize());
202
+ // Assertions.assertNotNull(asset.getFileName());
203
+ // Assertions.assertNotNull(asset.getUrl());
204
+ // Assertions.assertNotNull(asset.getTags());
205
+ // Assertions.assertNotNull(asset.toJSON());
206
+ // }
207
+ // }
208
+ // });
209
+ // }
210
+
211
+ // @Test
212
+ // void testAssetTypeSafety() {
213
+ // Asset asset = stack.asset(assetUid);
214
+ // asset.fetch(new FetchResultCallback() {
215
+ // @Override
216
+ // public void onCompletion(ResponseType responseType, Error error) {
217
+ // if (error == null) {
218
+ // Assertions.assertNotNull(asset.getAssetUid());
219
+ // Assertions.assertNotNull(asset.getFileType());
220
+ // Assertions.assertNotNull(asset.getFileSize());
221
+ // Assertions.assertNotNull(asset.getFileName());
222
+ // Assertions.assertNotNull(asset.getUrl());
223
+ // Assertions.assertNotNull(asset.getTags());
224
224
225
- }
226
- }
227
- });
228
- }
225
+ // }
226
+ // }
227
+ // });
228
+ // }
229
229
230
230
}
0 commit comments