Skip to content

Commit

Permalink
Some more passing tests around child logger overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
tsimbalar committed Sep 15, 2017
1 parent 4d9a0f9 commit 0b7da58
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Serilog.Tests/Core/ChildLoggerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,10 @@ public void WriteToLoggerMinimumLevelInheritanceScenarios(
[InlineData("xx", +1, null, +0, true)]
[InlineData("Root.xx", +1, null, +0, true)]
[InlineData("Root.N1.xx", +1, null, +0, true)]
// - child overrides on irrelevant namespaces
[InlineData(null, +0, "xx", +1, true)]
[InlineData(null, +0, "Root.xx", +1, true)]
[InlineData(null, +1, "Root.N1.xx", +1, true)]
// - root overrides prevent all processing from children
// even though children would happily accept it
[InlineData("Root", +1, null, +0, false)]
Expand Down

0 comments on commit 0b7da58

Please sign in to comment.