mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 12:21:23 +00:00
* Refactored the test runner to use attribute based test discovery * Ported value and vtable/object fuzzing tests from python to C#
13 lines
237 B
C#
13 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FlatBuffers.Test
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class FlatBuffersTestClassAttribute : Attribute
|
|
{
|
|
}
|
|
}
|