()
| 120 | // Test cases |
| 121 | |
| 122 | @Test |
| 123 | public void testFactoryClob() |
| 124 | throws Exception |
| 125 | { |
| 126 | IonClob value = system().newNullClob(); |
| 127 | checkNullClob(value); |
| 128 | modifyClob(value); |
| 129 | |
| 130 | value = system().newClob(null); |
| 131 | checkNullClob(value); |
| 132 | modifyClob(value); |
| 133 | } |
| 134 | |
| 135 | |
| 136 | @Test |
nothing calls this directly
no test coverage detected