File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed
tests/NSubstitute.Acceptance.Specs/FieldReports Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -304,3 +304,6 @@ docs/_site/*
304304
305305# Ignore VIM tmp files
306306* .swp
307+
308+ # Ignore Ionide files (https://ionide.io/)
309+ .ionide
Original file line number Diff line number Diff line change 4141 </PropertyGroup >
4242
4343 <ItemGroup >
44- <PackageReference Include =" Castle.Core" Version =" 4.4.0 -*" />
44+ <PackageReference Include =" Castle.Core" Version =" 4.4.1 -*" />
4545 <PackageReference Include =" System.Threading.Tasks.Extensions" Version =" 4.3.0-*"
4646 Condition =" '$(TargetIsNet5)' != 'true'" />
4747 </ItemGroup >
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ dotnet test -f netcoreapp1.1
Original file line number Diff line number Diff line change 1+ using NUnit . Framework ;
2+
3+ namespace Na { public delegate void DoNothing ( ) ; }
4+ namespace Ns { public delegate void DoNothing ( ) ; }
5+ namespace Nt { public delegate void DoNothing ( ) ; }
6+ namespace Nz { public delegate void DoNothing ( ) ; }
7+
8+ namespace NSubstitute . Acceptance . Specs . FieldReports
9+ {
10+ public class Issue631_NamespaceDelegate
11+ {
12+ [ Test ] public void Na ( ) { Substitute . For < Na . DoNothing > ( ) ; }
13+ [ Test ] public void Ns ( ) { Substitute . For < Ns . DoNothing > ( ) ; }
14+ [ Test ] public void Nt ( ) { Substitute . For < Nt . DoNothing > ( ) ; }
15+ [ Test ] public void Nz ( ) { Substitute . For < Nz . DoNothing > ( ) ; }
16+ }
17+ }
You can’t perform that action at this time.
0 commit comments