Skip to content

Commit

Permalink
Added needed references to NUnit in test project
Browse files Browse the repository at this point in the history
Added references to the NUnit project and linked the shared library.
  • Loading branch information
Gimly committed Aug 5, 2016
1 parent 309d0de commit 92df9ec
Show file tree
Hide file tree
Showing 3 changed files with 3,673 additions and 277 deletions.
10 changes: 5 additions & 5 deletions src/FluentAssertions.AspNetCore.Mvc/project.lock.json
Expand Up @@ -3702,7 +3702,7 @@
]
},
"runtime.native.System.Net.Http/4.0.1": {
"sha512": "nl6ine8h0r8sctNhQScY5DYLfeeUqa21P2enQ2wlAPgDlcAoOUlLh5ygmYIEUMYMe6jVCnKwPXoOVhcPFVMAAw==",
"sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
"type": "package",
"path": "runtime.native.System.Net.Http/4.0.1",
"files": [
Expand Down Expand Up @@ -5734,7 +5734,7 @@
]
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"sha512": "2TNd5n15PvjTHk7yHTiyh2vm6aURaHbMS8eo9VOJd/x5EDdZRDohsLaLtqXtDPkr3DFgioaepBvPiRi/w6RPQA==",
"sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
"type": "package",
"path": "System.Reflection.Emit.Lightweight/4.0.1",
"files": [
Expand Down Expand Up @@ -6559,7 +6559,7 @@
]
},
"System.Security.Cryptography.Cng/4.2.0": {
"sha512": "DRU3mjP74SMNVDFLHoiIgOiGlw0X7zTPi6xn6+c4YQrGuvtUrRDSskBY4EYbmKJSqwICMLYZQUbRx2bk9yveTg==",
"sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
"type": "package",
"path": "System.Security.Cryptography.Cng/4.2.0",
"files": [
Expand All @@ -6585,7 +6585,7 @@
]
},
"System.Security.Cryptography.Csp/4.0.0": {
"sha512": "3JvceCa+M83ro2lyRrOTF0IZtehmJb1IuFEznX94sXbyMWioAG158j/cWapxsrikEXiFegb1ksCQX6kn9wtVwQ==",
"sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
"type": "package",
"path": "System.Security.Cryptography.Csp/4.0.0",
"files": [
Expand Down Expand Up @@ -6654,7 +6654,7 @@
]
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"sha512": "g+O296PHHTAF90Sh2ZrX8mVmbzQI/LgRDJMt89VEbhLq7fFt3Jd/zchUY1e4WtUi6rg0mnm6QGTidBmCesWjfA==",
"sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
"type": "package",
"path": "System.Security.Cryptography.OpenSsl/4.0.0",
"files": [
Expand Down
37 changes: 29 additions & 8 deletions tests/FluentAssertions.AspNetCore.Mvc.Tests/project.json
@@ -1,13 +1,34 @@
{
"version": "1.0.0-*",
"version": "1.0.0-*",

"dependencies": {
"NETStandard.Library": "1.6.0"
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"NUnit": "3.4.1",
"dotnet-test-nunit": "3.4.0-beta-1"
},

"buildOptions": {
"compile": {
"include": [
"..\\FluentAssertions.Mvc.Tests.Shared\\**\\*.cs"
]
}
},

"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
"testRunner": "nunit",

"frameworks": {
"netcoreapp1.0": {
"imports": [
"netcoreapp1.0",
"portable-net45+win8"
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
}
}
}
}

0 comments on commit 92df9ec

Please sign in to comment.