()
| 53 | } |
| 54 | |
| 55 | public function test_tell() |
| 56 | { |
| 57 | $strio = new AvroStringIO('foobar'); |
| 58 | $this->assertEquals(0, $strio->tell()); |
| 59 | $strlen = 3; |
| 60 | $strio->read($strlen); |
| 61 | $this->assertEquals($strlen, $strio->tell()); |
| 62 | } |
| 63 | |
| 64 | public function test_read() |
| 65 | { |
nothing calls this directly
no test coverage detected