Home | History | Annotate | Download | only in FlatBuffers.Test

Lines Matching refs:Throws

49             Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutByte(1, 99));
71 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutShort(2, 99));
81 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutShort(0, 99));
89 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutShort(1, 99));
113 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D));
121 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(0, 0x0A0B0C0D));
129 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D));
157 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D));
165 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(0, 0x010203040A0B0C0D));
173 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D));
192 Assert.Throws<ArgumentOutOfRangeException>(()=>uut.Get(1));
212 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetShort(2));
220 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetShort(1));
242 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetInt(4));
250 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetInt(0));
276 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(8));
284 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(0));