Skip to content

Commit

Permalink
test: add TypeOfTests Of metod
Browse files Browse the repository at this point in the history
  • Loading branch information
jianxuanbing committed Oct 31, 2022
1 parent 1d401e4 commit a0bd90d
Show file tree
Hide file tree
Showing 4 changed files with 557 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Bing.Utils.Tests/Bing.Utils.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@
<ProjectReference Include="..\Bing.Tests.Samples\Bing.Tests.Samples.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="TypeUT\" />
</ItemGroup>

</Project>
22 changes: 22 additions & 0 deletions tests/Bing.Utils.Tests/Samples/NormalEnum.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
namespace Bing.Utils.Tests.Samples;

public enum Int16Enum : short
{
A = 1,
B = 2,
C = 3,
}

public enum Int32Enum : int
{
A = 1,
B = 2,
C = 3,
}

public enum Int64Enum : long
{
A = 1,
B = 2,
C = 3,
}
Loading

0 comments on commit a0bd90d

Please sign in to comment.