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

Lines Matching refs:Throws

48             Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutByte(1, 99));
69 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutShort(2, 99));
78 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutShort(0, 99));
85 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutShort(1, 99));
108 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D));
115 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(0, 0x0A0B0C0D));
122 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutInt(2, 0x0A0B0C0D));
149 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D));
156 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(0, 0x010203040A0B0C0D));
163 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D));
181 Assert.Throws<ArgumentOutOfRangeException>(() => uut.Get(1));
200 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetShort(2));
207 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetShort(1));
228 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetInt(4));
235 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetInt(0));
260 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(8));
267 Assert.Throws<ArgumentOutOfRangeException>(() => uut.GetLong(0));
580 Assert.Throws<ArgumentNullException>(() => uut.Put(1024, data));
591 Assert.Throws<ArgumentException>(() => uut.Put(1024, data));
609 Assert.Throws<ArgumentException>(() => uut.Put(1024, data));