Name Date Size #Lines LOC

..--

Properties/H25-Apr-2025-5315

.gitignoreH A D25-Apr-202546 44

Assert.csH A D25-Apr-20253.5 KiB137103

ByteBufferTests.csH A D25-Apr-202523.4 KiB743578

FlatBufferBuilderTests.csH A D25-Apr-202525.6 KiB764621

FlatBuffers.Core.Test.csprojH A D25-Apr-20257.4 KiB198186

FlatBuffers.Test.csprojH A D25-Apr-20259 KiB223216

FlatBuffersExampleTests.csH A D25-Apr-202547.4 KiB1,196943

FlatBuffersFuzzTests.csH A D25-Apr-202529.8 KiB812712

FlatBuffersTestClassAttribute.csH A D25-Apr-2025851 2911

FlatBuffersTestMethodAttribute.csH A D25-Apr-2025781 258

FuzzTestData.csH A D25-Apr-20251.7 KiB3820

Lcg.csH A D25-Apr-20251.1 KiB4220

NetTest.batH A D25-Apr-2025665 2116

NetTest.shH A D25-Apr-20251.5 KiB5533

Program.csH A D25-Apr-20252.3 KiB6944

README.mdH A D25-Apr-2025813 3924

TestTable.csH A D25-Apr-20253.5 KiB153110

clean.shH A D25-Apr-2025324 115

packages.configH A D25-Apr-2025140 44

README.md

1# .NET Tests
2
3## Running on Linux
4
5### Prerequisites
6To run the tests on a Linux a few prerequisites are needed:
7
81) mono
92) msbuild
10
11### Running
12
13To run the tests:
14
15```
16./NetTest.sh
17```
18
19This will download the .NET installer and core SDK if those are not already
20installed. Then it will build the tests using `msbuild` and run the resulting
21test binary with `mono`.
22
23After running the tests, the downloaded .NET installer and SDK are *not* removed
24as they can be reused in subsequent invocations. The files are ignored by git by
25default, and can remain in the working directory.
26
27### Cleaning
28
29If you want to clean up the downloaded .NET installer and SDK, run:
30
31```
32./clean.sh
33```
34
35This will wipe away the downloaded files and directories. Those will be
36automatically re-downloaded when running `NetTest.sh`.
37
38
39