This commit is contained in:
2025-06-13 16:55:33 +08:00
parent c2ce6f91ed
commit 207fcb6414

View File

@ -87,4 +87,14 @@ public class BceFaceBodyAdapterTest {
} }
}); });
} }
@Test
public void testDeleteFace() {
BceFaceBodyAdapter adapter = getAdapter();
String db = "3972138108618674176";
List<String> entityIds = adapter.listFace(db, "", null, null);
entityIds.forEach(entityId -> {
adapter.deleteFace(db, entityId);
});
}
} }