-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from EvoEsports/feature/more-tests
Add more test cases for MtTransformer
- Loading branch information
Showing
7 changed files
with
213 additions
and
12 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/ManiaTemplates/Exceptions/CurlyBraceCountMismatchException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace ManiaTemplates.Exceptions; | ||
|
||
public class CurlyBraceCountMismatchException : Exception | ||
{ | ||
public CurlyBraceCountMismatchException() | ||
{ | ||
} | ||
|
||
public CurlyBraceCountMismatchException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public CurlyBraceCountMismatchException(string message, Exception inner) : base(message, inner) | ||
{ | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
src/ManiaTemplates/Exceptions/EmptyNodeAttributeException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace ManiaTemplates.Exceptions; | ||
|
||
public class EmptyNodeAttributeException : Exception | ||
{ | ||
public EmptyNodeAttributeException() | ||
{ | ||
} | ||
|
||
public EmptyNodeAttributeException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public EmptyNodeAttributeException(string message, Exception inner) : base(message, inner) | ||
{ | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
src/ManiaTemplates/Exceptions/InterpolationRecursionException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace ManiaTemplates.Exceptions; | ||
|
||
public class InterpolationRecursionException : Exception | ||
{ | ||
public InterpolationRecursionException() | ||
{ | ||
} | ||
|
||
public InterpolationRecursionException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public InterpolationRecursionException(string message, Exception inner) : base(message, inner) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
using System.Dynamic; | ||
|
||
namespace ManiaTemplates.Tests.Lib; | ||
|
||
public class TestDynamicObject : DynamicObject | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters