Skip to content
This repository was archived by the owner on Dec 12, 2020. It is now read-only.

Commit ca6f949

Browse files
committed
Add file headers in DocumentTransform tests
1 parent d8a169b commit ca6f949

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/CodeGeneration.Roslyn.Tests/DocumentTransformTests.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
using System.Collections.Generic;
2-
using System.Text;
3-
using System.Threading.Tasks;
4-
using Microsoft.Extensions.DependencyModel;
5-
using Validation;
1+
// Copyright (c) Andrew Arnott. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
3+
64
using Xunit;
75

86
public class DocumentTransformTests : CompilationTestsBase
@@ -326,4 +324,4 @@ partial struct Empty<T>
326324
}";
327325
AssertGeneratedAsExpected(source, generated);
328326
}
329-
}
327+
}

src/CodeGeneration.Roslyn.Tests/Helpers/CompilationTestsBase.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Andrew Arnott. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
3+
4+
using System;
25
using System.Collections.Immutable;
36
using System.IO;
47
using System.Linq;
@@ -94,4 +97,4 @@ protected static Project CreateProject(params string[] sources)
9497
}
9598
return solution.GetProject(projectId);
9699
}
97-
}
100+
}

0 commit comments

Comments
 (0)