Skip to content

Commit c503071

Browse files
committed
mdoc: Updated unit tests so they run on windows.
Closes #125. Also updated contributing and readme docs with a few extra details.
1 parent 8822f77 commit c503071

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CONTRIBUTING.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
Your feedback and contributions are greatly appreciated, and improve the quality of mdoc, monodoc, and related tools. Please read the following contribution guidelines to ensure a quick and timely review and acceptance of your patches. As an overview, the following are the contribution guidelines, and any deviations from the norm should be discussed in a github issue.
44

5-
- All code must be written in *C#*
6-
- We are currently targeting *.NET Framework 4.5* ... we will be transitioning to .NET Standard 2 in the future, and supporting other targets such as dotnet core.
7-
- All projects and solutions created must load and compile in *Visual Studio 2017* and *Visual Studio for Mac*.
5+
- All code must be written in **C#**
6+
- We are currently targeting **.NET Framework 4.5** ... we will be transitioning to .NET Standard 2 in the future, and supporting other targets such as dotnet core.
7+
- All projects and solutions created must load and compile in **Visual Studio 2017** and **Visual Studio for Mac**.
88
- New dependencies (such as nuget references) must be _discussed and reviewed_. _mdoc_ is distributed via the Mono project, and as such we must be careful with what dependencies we distribute.
9-
- *NUnit* is used to write unit tests.
10-
- Integration tests use *Make* on *Bash*.
11-
- This project uses *Git* hosted on *GitHub* as the central repository host.
9+
- **NUnit** is used to write unit tests.
10+
- Integration tests use **Make** on **Bash**.
11+
- This project uses **Git** hosted on **GitHub** as the central repository host.
1212
- All pull requests should pass all unit tests successfully (which means being able to run the CLI build via `make`).
1313

1414
## Bug Reports and Feature Requests
@@ -39,13 +39,15 @@ This project tries to avoid chatty in-progress commits that are common during de
3939

4040
You can do so either by using an interactive rebase of your branch if you need multiple commits, or simply doing a soft reset `git reset origin/master —soft` … which will stage all of your changes and let you create a new single commit that contains all changes.
4141

42+
The commit message should be verbose enough to explain what behavior is changing, bug is being fixed, or feature being added. It should also contain a reference to the github issue being resolved, as [described here](https://github.com/blog/1386-closing-issues-via-commit-messages).
43+
4244
### Tests
4345

4446
Your commit should introduce no regressions. While we do not require 100% code coverage, every newly-introduced feature should have a new unit or integration test written. You can make sure to run all unit tests locally by using the [instructions here](https://github.com/mono/api-doc-tools#cli). There are two kinds of tests:
4547

4648
#### Unit Tests
4749

48-
Written with _NUnit_, there are two unit test projects: *mdoc.Test*, and *Monodoc.Test*.
50+
Written with _NUnit_, there are two unit test projects: *mdoc.Test*, and *Monodoc.Test*. _Visual Studio for Mac_ has built-in support for _NUnit_, and on Windows, you can install the [_NUnit 3 Test Adapter_](https://marketplace.visualstudio.com/items?itemName=NUnitDevelopers.NUnit3TestAdapter)
4951

5052
#### Integration Tests
5153

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BF
5353
echo "deb http://download.mono-project.com/repo/ubuntu trusty main" | tee /etc/apt/sources.list.d/mono-official.list
5454
5555
apt-get update
56-
apt-get install git make mono-devel ca-certificates-mono wget nuget -s
56+
apt-get install git make mono-devel ca-certificates-mono wget nuget -y
5757
5858
wget -q 'http://mxr.mozilla.org/seamonkey/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1' -O "/tmp/certdata.txt"
5959
mozroots --import --ask-remove --file /tmp/certdata.txt

monodoc/Test/Monodoc.Test.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
<Name>monodoc</Name>
5353
</ProjectReference>
5454
</ItemGroup>
55+
<ItemGroup>
56+
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
57+
</ItemGroup>
5558
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
5659
</Project>

monodoc/Test/Monodoc/EcmaDocTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class EcmaDocTest
1818
// signed/strong-named by the build, we have to resort to reflection
1919
TDelegate GetTestedMethod<TDelegate> (string methodName)
2020
{
21-
var ecmaDoc = Type.GetType ("Monodoc.Providers.EcmaDoc, monodoc, PublicKey=0738eb9f132ed756");
21+
var ecmaDoc = Type.GetType ("Monodoc.Providers.EcmaDoc, monodoc");
2222
return (TDelegate)(object)Delegate.CreateDelegate (typeof (TDelegate), ecmaDoc.GetMethod (methodName));
2323
}
2424

monodoc/monodoc.dll.config

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
<!-- <add key="cache" value="file,~/path/to/cache/directory" /> -->
66
</appSettings>
77
</configuration>
8-
c

0 commit comments

Comments
 (0)