コード例 #1
0
ファイル: AnalyzerTest.cs プロジェクト: piotrstenke/Durian
 /// <summary>
 /// Initializes a new instance of the <see cref="AnalyzerTest{T}"/> class.
 /// </summary>
 /// <param name="compilation">An instance of <see cref="TestableCompilationData"/> to share between all tests in this class.</param>
 protected AnalyzerTest(TestableCompilationData compilation) : base(compilation)
 {
 }
コード例 #2
0
ファイル: CompilationTest.cs プロジェクト: piotrstenke/Durian
 /// <summary>
 /// Initializes a new instance of the <see cref="CompilationTest"/> class.
 /// </summary>
 /// <param name="sources">An array of <see cref="string"/>s to be used as initial sources of <see cref="CSharpSyntaxTree"/>s for the <see cref="Compilation"/>.</param>
 protected CompilationTest(params string[]?sources)
 {
     Compilation = TestableCompilationData.Create(sources);
 }
コード例 #3
0
ファイル: CompilationTest.cs プロジェクト: piotrstenke/Durian
 /// <summary>
 /// Initializes a new instance of the <see cref="CompilationTest"/> class.
 /// </summary>
 /// <param name="compilation">An instance of <see cref="TestableCompilationData"/> to share between all tests in this class.</param>
 protected CompilationTest(TestableCompilationData compilation)
 {
     Compilation = compilation;
 }
コード例 #4
0
ファイル: CompilationTest.cs プロジェクト: piotrstenke/Durian
 /// <summary>
 /// Initializes a new instance of the <see cref="CompilationTest"/> class.
 /// </summary>
 protected CompilationTest()
 {
     Compilation = TestableCompilationData.Create();
 }