We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282d522 commit 46af431Copy full SHA for 46af431
cloudinary-core/src/test/java/com/cloudinary/test/CloudinaryTest.java
@@ -406,6 +406,13 @@ public void testEffectWithParam() {
406
assertEquals(DEFAULT_UPLOAD_PATH + "e_sepia:10/test", result);
407
}
408
409
+ @Test
410
+ public void testArtisticFilter(){
411
+ Transformation transformation = new Transformation().effect("art", "incognito");
412
+ String result = cloudinary.url().transformation(transformation).generate("test");
413
+ assertEquals(DEFAULT_UPLOAD_PATH + "e_art:incognito/test", result);
414
+ }
415
+
416
@Test
417
public void testDensity() {
418
// should support density
0 commit comments