Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Properties/ | H | 25-Apr-2025 | - | 53 | 15 | |
.gitignore | H A D | 25-Apr-2025 | 46 | 4 | 4 | |
Assert.cs | H A D | 25-Apr-2025 | 3.5 KiB | 137 | 103 | |
ByteBufferTests.cs | H A D | 25-Apr-2025 | 23.4 KiB | 743 | 578 | |
FlatBufferBuilderTests.cs | H A D | 25-Apr-2025 | 25.6 KiB | 764 | 621 | |
FlatBuffers.Core.Test.csproj | H A D | 25-Apr-2025 | 7.4 KiB | 198 | 186 | |
FlatBuffers.Test.csproj | H A D | 25-Apr-2025 | 9 KiB | 223 | 216 | |
FlatBuffersExampleTests.cs | H A D | 25-Apr-2025 | 47.4 KiB | 1,196 | 943 | |
FlatBuffersFuzzTests.cs | H A D | 25-Apr-2025 | 29.8 KiB | 812 | 712 | |
FlatBuffersTestClassAttribute.cs | H A D | 25-Apr-2025 | 851 | 29 | 11 | |
FlatBuffersTestMethodAttribute.cs | H A D | 25-Apr-2025 | 781 | 25 | 8 | |
FuzzTestData.cs | H A D | 25-Apr-2025 | 1.7 KiB | 38 | 20 | |
Lcg.cs | H A D | 25-Apr-2025 | 1.1 KiB | 42 | 20 | |
NetTest.bat | H A D | 25-Apr-2025 | 665 | 21 | 16 | |
NetTest.sh | H A D | 25-Apr-2025 | 1.5 KiB | 55 | 33 | |
Program.cs | H A D | 25-Apr-2025 | 2.3 KiB | 69 | 44 | |
README.md | H A D | 25-Apr-2025 | 813 | 39 | 24 | |
TestTable.cs | H A D | 25-Apr-2025 | 3.5 KiB | 153 | 110 | |
clean.sh | H A D | 25-Apr-2025 | 324 | 11 | 5 | |
packages.config | H A D | 25-Apr-2025 | 140 | 4 | 4 |
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