Skip to content

Commit a5f6d70

Browse files
committed
Move the various test projects into tests/
1 parent c1a7ba0 commit a5f6d70

File tree

1,399 files changed

+682
-684
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,399 files changed

+682
-684
lines changed

.gitignore

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
.vscode
2-
/Test/en.*/
3-
/Test/html.*/
4-
/Test/DocTest.*
5-
/.v2.txt
6-
/.v0.txt
72
packages
83
NUnit.*
94
TestResult.xml
@@ -17,14 +12,4 @@ obj
1712
*.pdb
1813
*.psess
1914
*.vspx
20-
mdoc/Test/actual_statistics.txt
21-
mdoc/Test/test-overwrite-attribute/SomeClass.xml
22-
mdoc/Test/test-overwrite-attribute/SomeClass.dll
23-
mdoc/Test/test-generic-ignored-namespace/ReadOnlySpan.dll
24-
mdoc/Test/test-nuget-information/input_data/
25-
/Debug/UwpTestWinRtComponentCpp
26-
Debug
27-
/mdoc/mdoc.Test/UwpTestWinRtComponentCpp/x64/Release
28-
/mdoc.Test.Cplusplus/x64/Release
29-
/x64/Release/UwpTestWinRtComponentCpp
30-
/mdoc/Properties/launchSettings.json
15+
test.txt

apidoctools.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mdoc", "mdoc\mdoc.csproj",
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "monodoc", "monodoc\monodoc.csproj", "{6E644802-B579-4037-9809-9CF4C7172C9D}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monodoc.Test", "monodoc\Test\Monodoc.Test.csproj", "{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monodoc.Test", "tests\monodoc\Test\Monodoc.Test.csproj", "{1EE70E2C-A289-4C36-AD0A-3D0C6CE56615}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mdoc.Test", "mdoc\mdoc.Test\mdoc.Test.csproj", "{5ADDEFB6-930C-46BC-8B2B-FDE5C7E3B5AD}"
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mdoc.Test", "tests\mdoc\mdoc.Test\mdoc.Test.csproj", "{5ADDEFB6-930C-46BC-8B2B-FDE5C7E3B5AD}"
1313
EndProject
14-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "mdoc.Test.FSharp", "mdoc\mdoc.Test\mdoc.Test.FSharp\mdoc.Test.FSharp.fsproj", "{979F9F80-12FE-4236-9E93-6D554AB13701}"
14+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "mdoc.Test.FSharp", "tests\mdoc\mdoc.Test.FSharp\mdoc.Test.FSharp.fsproj", "{979F9F80-12FE-4236-9E93-6D554AB13701}"
1515
EndProject
1616
Global
1717
GlobalSection(SolutionConfigurationPlatforms) = preSolution

mdoc/.gitignore

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
/Test/en.*/
2-
/Test/en.actual
3-
/Test/html.*/
4-
/Test/DocTest.*
5-
/Test/*.dll*
6-
/Test/FrameworkTestData*
7-
/Test/fx-import
8-
Test/DocTest-DropNS-classic.xml
1+
92
/.v2.txt
10-
/.v0.txt
11-
/Test/test-nuget-information
12-
/Test/test-type-projection
3+
/.v0.txt

mdoc/Makefile

Lines changed: 613 additions & 613 deletions
Large diffs are not rendered by default.

monodoc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ CONFIGURATION = Release
22
MONO = $(if $(filter Windows_NT,$(OS)),,mono)
33

44
check:
5-
$(MONO) ../packages/NUnit.ConsoleRunner.3.6.0/tools/nunit3-console.exe Test/bin/$(CONFIGURATION)/Monodoc.Test.dll
5+
$(MONO) ../packages/NUnit.ConsoleRunner.3.6.0/tools/nunit3-console.exe ../tests/monodoc/Test/bin/$(CONFIGURATION)/Monodoc.Test.dll
66
@echo "monodoc Tests Complete!"

tests/mdoc/.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/Test/en.*/
2+
/Test/en.actual
3+
/Test/html.*/
4+
/Test/DocTest.*
5+
/Test/*.dll*
6+
/Test/FrameworkTestData*
7+
/Test/fx-import
8+
Test/DocTest-DropNS-classic.xml
9+
/Test/test-nuget-information
10+
/Test/test-type-projection
11+
/Test/actual_statistics.txt
12+
/Test/test-overwrite-attribute/SomeClass.xml
13+
/Test/test-overwrite-attribute/SomeClass.dll
14+
/Test/test-generic-ignored-namespace/ReadOnlySpan.dll
15+
/Test/test-long-file-name/
16+
/Test/test-nuget-information/input_data/
17+
/Debug/UwpTestWinRtComponentCpp
18+
Debug
19+
/mdoc.Test/UwpTestWinRtComponentCpp/x64/Release
20+
/mdoc.Test.Cplusplus/x64/Release
21+
/x64/Release/UwpTestWinRtComponentCpp
22+
/mdoc/Properties/launchSettings.json

0 commit comments

Comments
 (0)