File tree Expand file tree Collapse file tree
NetEvolve.Extensions.MSTest.Tests.PublicApi
NetEvolve.Extensions.NUnit.Tests.PublicApi
NetEvolve.Extensions.TUnit.Tests.PublicApi
NetEvolve.Extensions.XUnit.Tests.PublicApi
NetEvolve.Extensions.XUnit.V3.Tests.PublicApi Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public Task PublicApi_HasNotChanged_Expected()
4444 private static bool IsVisibleToIntelliSense ( Type type )
4545 {
4646 var browsable = type . GetCustomAttribute < BrowsableAttribute > ( ) ;
47- if ( browsable is null || browsable . Browsable )
47+ if ( browsable ? . Browsable != false )
4848 {
4949 return true ;
5050 }
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public Task PublicApi_HasNotChanged_Expected()
4747 private static bool IsVisibleToIntelliSense ( Type type )
4848 {
4949 var browsable = type . GetCustomAttribute < BrowsableAttribute > ( ) ;
50- if ( browsable is null || browsable . Browsable )
50+ if ( browsable ? . Browsable != false )
5151 {
5252 return true ;
5353 }
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ private static bool IsVisibleToIntelliSense(Type type)
4949 }
5050
5151 var browsable = type . GetCustomAttribute < BrowsableAttribute > ( ) ;
52- if ( browsable is null || browsable . Browsable )
52+ if ( browsable ? . Browsable != false )
5353 {
5454 return true ;
5555 }
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public Task PublicApi_HasNotChanged_Expected()
4343 private static bool IsVisibleToIntelliSense ( Type type )
4444 {
4545 var browsable = type . GetCustomAttribute < BrowsableAttribute > ( ) ;
46- if ( browsable is null || browsable . Browsable )
46+ if ( browsable ? . Browsable != false )
4747 {
4848 return true ;
4949 }
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public Task PublicApi_HasNotChanged_Expected()
4444 private static bool IsVisibleToIntelliSense ( Type type )
4545 {
4646 var browsable = type . GetCustomAttribute < BrowsableAttribute > ( ) ;
47- if ( browsable is null || browsable . Browsable )
47+ if ( browsable ? . Browsable != false )
4848 {
4949 return true ;
5050 }
You can’t perform that action at this time.
0 commit comments