Skip to content

Commit db88544

Browse files
Add unit tests to fix Verify() setup.
1 parent 7b4a355 commit db88544

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

.editorconfig

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,14 @@ dotnet_diagnostic.IDE0130.severity = none
9898
dotnet_diagnostic.SA1600.severity = none
9999

100100
# SA1602: Enumeration items should be documented
101-
dotnet_diagnostic.SA1602.severity = none
101+
dotnet_diagnostic.SA1602.severity = none
102+
103+
# Verify
104+
[*.{received,verified}.{txt}]
105+
charset = utf-8-bom
106+
end_of_line = lf
107+
indent_size = unset
108+
indent_style = unset
109+
insert_final_newline = false
110+
tab_width = unset
111+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.verified.txt text eol=lf working-tree-encoding=UTF-8
2+
*.verified.xml text eol=lf working-tree-encoding=UTF-8
3+
*.verified.json text eol=lf working-tree-encoding=UTF-8
4+
*.verified.bin binary

PosInformatique.Azure.Identity.AppRegistrationSecretWatcher.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Solution>
22
<Folder Name="/Solution Items/">
33
<File Path=".editorconfig" />
4+
<File Path=".gitattributes" />
45
<File Path=".gitignore" />
56
<File Path="Directory.Build.props" />
67
<File Path="Directory.Packages.props" />
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//-----------------------------------------------------------------------
2+
// <copyright file="VerifyChecksTests.cs" company="P.O.S Informatique">
3+
// Copyright (c) P.O.S Informatique. All rights reserved.
4+
// </copyright>
5+
//-----------------------------------------------------------------------
6+
7+
namespace PosInformatique.Azure.Identity.AppRegistrationSecretWatcher.Core.Tests
8+
{
9+
public class VerifyChecksTests
10+
{
11+
[Fact]
12+
public Task Run() => VerifyChecks.Run();
13+
}
14+
}

0 commit comments

Comments
 (0)