• Home
Name Date Size #Lines LOC

..--

Properties/06-May-2025-5315

.gitignoreD06-May-202546 44

Assert.csD06-May-20254.1 KiB157121

ByteBufferTests.csD06-May-202523.5 KiB743578

FlatBufferBuilderTests.csD06-May-202525.7 KiB767624

FlatBuffers.Test.csprojD06-May-20257.7 KiB204192

FlatBuffersExampleTests.csD06-May-202547.5 KiB1,199945

FlatBuffersFuzzTests.csD06-May-202542.1 KiB1,053880

FlatBuffersTestClassAttribute.csD06-May-2025858 2911

FlatBuffersTestMethodAttribute.csD06-May-2025788 258

FuzzTestData.csD06-May-20251.7 KiB3820

Lcg.csD06-May-20251.1 KiB4220

NetTest.batD06-May-2025655 2116

NetTest.shD06-May-2025994 3721

Program.csD06-May-20252.3 KiB6944

README.mdD06-May-2025813 3924

TestTable.csD06-May-20253.5 KiB153110

clean.shD06-May-2025324 115

monsterdata_cstest.monD06-May-2025304

monsterdata_cstest_sp.monD06-May-2025304

packages.configD06-May-2025117 54

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