Lines Matching refs:FuzzTestData
597 builder.AddBool(j, FuzzTestData.BoolValue, false); in CheckObjects()
602 builder.AddSbyte(j, FuzzTestData.Int8Value, 0); in CheckObjects()
607 builder.AddByte(j, FuzzTestData.UInt8Value, 0); in CheckObjects()
612 builder.AddShort(j, FuzzTestData.Int16Value, 0); in CheckObjects()
617 builder.AddUshort(j, FuzzTestData.UInt16Value, 0); in CheckObjects()
622 builder.AddInt(j, FuzzTestData.Int32Value, 0); in CheckObjects()
627 builder.AddUint(j, FuzzTestData.UInt32Value, 0); in CheckObjects()
632 builder.AddLong(j, FuzzTestData.Int64Value, 0); in CheckObjects()
637 builder.AddUlong(j, FuzzTestData.UInt64Value, 0); in CheckObjects()
642 builder.AddFloat(j, FuzzTestData.Float32Value, 0); in CheckObjects()
647 builder.AddDouble(j, FuzzTestData.Float64Value, 0); in CheckObjects()
679 Assert.AreEqual(FuzzTestData.BoolValue, table.GetSlot(f, false)); in CheckObjects()
684 Assert.AreEqual(FuzzTestData.Int8Value, table.GetSlot(f, (sbyte)0)); in CheckObjects()
689 Assert.AreEqual(FuzzTestData.UInt8Value, table.GetSlot(f, (byte)0)); in CheckObjects()
694 Assert.AreEqual(FuzzTestData.Int16Value, table.GetSlot(f, (short)0)); in CheckObjects()
699 Assert.AreEqual(FuzzTestData.UInt16Value, table.GetSlot(f, (ushort)0)); in CheckObjects()
704 Assert.AreEqual(FuzzTestData.Int32Value, table.GetSlot(f, (int)0)); in CheckObjects()
709 Assert.AreEqual(FuzzTestData.UInt32Value, table.GetSlot(f, (uint)0)); in CheckObjects()
714 Assert.AreEqual(FuzzTestData.Int64Value, table.GetSlot(f, (long)0)); in CheckObjects()
719 Assert.AreEqual(FuzzTestData.UInt64Value, table.GetSlot(f, (ulong)0)); in CheckObjects()
724 Assert.AreEqual(FuzzTestData.Float32Value, table.GetSlot(f, (float)0)); in CheckObjects()
729 Assert.AreEqual(FuzzTestData.Float64Value, table.GetSlot(f, (double)0)); in CheckObjects()