Skip to content

Commit

Permalink
More translation tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt committed Mar 7, 2021
1 parent 6ad474f commit 8d7c1a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Serilog.Expressions.Tests/Cases/translation-cases.asv
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ A like '%a_b%' ⇶ _Internal_NotEqual(_Internal_I
A like 'a%b%' ⇶ _Internal_NotEqual(_Internal_IndexOfMatch(A, '^a(?:.|\r|\n)*b'), -1)
A like '%' ⇶ _Internal_NotEqual(_Internal_IndexOfMatch(A, '.*'), -1)

// Root properties
@p['Test'] ⇶ Test
@p[Test] ⇶ @p[Test]

// Variadics
coalesce(A, B, C, D) ⇶ coalesce(A, coalesce(B, coalesce(C, D)))

Expand Down

0 comments on commit 8d7c1a0

Please sign in to comment.