Sha256: bcda1e5067953d8f191607473b1fc06e4e3d9d5a80c2a6657110afa9b42b8bf1
Contents?: true
Size: 526 Bytes
Versions: 12
Compression:
Stored size: 526 Bytes
Contents
package jrubypoi; import java.io.*; public class MockOutputStream extends OutputStream { public String name; public boolean write_called; public MockOutputStream(String name) { this.name = name; this.write_called = false; } public void write(int b) throws IOException { this.write_called = true; } public void write(byte[] b) throws IOException { this.write_called = true; } public void write(byte[] b, int offset, int length) throws IOException { this.write_called = true; } }
Version data entries
12 entries across 12 versions & 3 rubygems