13fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson/*
2a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamath * Copyright (C) 2015 The Android Open Source Project
33fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson *
43fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * Licensed under the Apache License, Version 2.0 (the "License");
53fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * you may not use this file except in compliance with the License.
63fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * You may obtain a copy of the License at
73fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson *
83fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson *      http://www.apache.org/licenses/LICENSE-2.0
93fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson *
103fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * Unless required by applicable law or agreed to in writing, software
113fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * distributed under the License is distributed on an "AS IS" BASIS,
123fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson * See the License for the specific language governing permissions and
14a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamath * limitations under the License
153fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson */
163fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson
174557728efb66c455a52b7669a8eefef7a9e54854Jesse Wilsonpackage libcore.java.util.zip;
183fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson
19a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamathimport java.io.OutputStream;
204557728efb66c455a52b7669a8eefef7a9e54854Jesse Wilsonimport java.util.zip.ZipOutputStream;
213fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson
22a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamathpublic final class ZipFileTest extends AbstractZipFileTest {
23ef164bf196538c04f499dcbb49a389c70ff5601aPaul Duffin
24a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamath    @Override
25a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamath    protected ZipOutputStream createZipOutputStream(OutputStream wrapped) {
26a812a87e69850d1492c45bd88d7ff3dbf21d5075Narayan Kamath        return new ZipOutputStream(wrapped);
271925e7d192641bc9cfa6a347a2ba567d61856322Narayan Kamath    }
283fced8072a11495cc6eb27605f6130d58b971fdcJesse Wilson}
29