@@ -161,9 +161,6 @@ public void TestInOutBytes()
161
161
BitStream outStream = new BitStream ( buffer ) ;
162
162
outStream . WriteByte ( someNumber ) ;
163
163
164
-
165
- // the bit should now be stored in the buffer, lets see if it comes out
166
-
167
164
BitStream inStream = new BitStream ( buffer ) ;
168
165
Assert . That ( inStream . ReadByte ( ) , Is . EqualTo ( someNumber ) ) ;
169
166
@@ -182,9 +179,6 @@ public void TestInOutInt16()
182
179
BitStream outStream = new BitStream ( buffer ) ;
183
180
outStream . WriteInt16 ( someNumber ) ;
184
181
185
-
186
- // the bit should now be stored in the buffer, lets see if it comes out
187
-
188
182
BitStream inStream = new BitStream ( buffer ) ;
189
183
short result = inStream . ReadInt16 ( ) ;
190
184
@@ -202,9 +196,6 @@ public void TestInOutInt32()
202
196
BitStream outStream = new BitStream ( buffer ) ;
203
197
outStream . WriteInt32 ( someNumber ) ;
204
198
205
-
206
- // the bit should now be stored in the buffer, lets see if it comes out
207
-
208
199
BitStream inStream = new BitStream ( buffer ) ;
209
200
int result = inStream . ReadInt32 ( ) ;
210
201
@@ -222,8 +213,6 @@ public void TestInOutInt64()
222
213
BitStream outStream = new BitStream ( buffer ) ;
223
214
outStream . WriteInt64 ( someNumber ) ;
224
215
225
- // the bit should now be stored in the buffer, lets see if it comes out
226
-
227
216
BitStream inStream = new BitStream ( buffer ) ;
228
217
long result = inStream . ReadInt64 ( ) ;
229
218
0 commit comments