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