Coverage Report - org.seasar.teeda.core.mock.MockResponseStream
 
Classes in this File Line Coverage Branch Coverage Complexity
MockResponseStream
0%
0/13
N/A
1
 
 1  
 /*
 2  
  * Copyright 2004-2011 the Seasar Foundation and the Others.
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *     http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 13  
  * either express or implied. See the License for the specific language
 14  
  * governing permissions and limitations under the License.
 15  
  */
 16  
 package org.seasar.teeda.core.mock;
 17  
 
 18  
 import java.io.IOException;
 19  
 import java.io.OutputStream;
 20  
 
 21  
 import javax.faces.context.ResponseStream;
 22  
 
 23  
 /**
 24  
  * @author shot
 25  
  * 
 26  
  */
 27  
 public class MockResponseStream extends ResponseStream {
 28  
 
 29  
     private final OutputStream out_;
 30  
 
 31  0
     public MockResponseStream(final OutputStream out) {
 32  0
         out_ = out;
 33  0
     }
 34  
 
 35  
     public void write(int b) throws IOException {
 36  0
         out_.write(b);
 37  0
     }
 38  
 
 39  
     public void close() throws IOException {
 40  0
         out_.close();
 41  0
     }
 42  
 
 43  
     public void flush() throws IOException {
 44  0
         out_.flush();
 45  0
     }
 46  
 
 47  
     public void write(byte[] bytes) throws IOException {
 48  0
         out_.write(bytes, 0, bytes.length);
 49  0
     }
 50  
 
 51  
     public void write(byte[] bytes, int off, int len) throws IOException {
 52  0
         out_.write(bytes, off, len);
 53  0
     }
 54  
 
 55  
 }