-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
tests/CodeGenHelpers.Tests/SampleCode/CanPassMultipleParametersOfSameType.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,19 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
namespace CodeGenHelpers.SampleCode | ||
{ | ||
partial class CanPassMultipleParametersOfSameType | ||
{ | ||
CanPassMultipleParametersOfSameType(string str1, string str2) | ||
: base(str1, str2) | ||
{ | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
tests/CodeGenHelpers.Tests/Tests/ConstructorBuilderTests.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,27 @@ | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace CodeGenHelpers.Tests; | ||
|
||
public class ConstructorBuilderTests : TestBase | ||
{ | ||
public ConstructorBuilderTests(ITestOutputHelper testOutput) | ||
: base(testOutput) | ||
{ | ||
} | ||
|
||
[Fact] | ||
public void CanPassMultipleParametersOfSameType() | ||
{ | ||
var builder = CodeBuilder.Create(Namespace) | ||
.AddClass("CanPassMultipleParametersOfSameType"); | ||
|
||
builder.AddConstructor().WithBaseCall(new[] | ||
{ | ||
("string", "str1"), | ||
("string", "str2"), | ||
}); | ||
|
||
MakeAssertion(builder); | ||
} | ||
} |