Browse Source

renamed files with sample code

pull/52/head
Artur Zgodziski 15 years ago
parent
commit
33290c2a7f
  1. 6
      ICSharpCode.Decompiler/Tests/CustomAttributes/CustomAttributeTests.cs
  2. 0
      ICSharpCode.Decompiler/Tests/CustomAttributes/S_AssemblyCustomAttribute.cs
  3. 0
      ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributeSamples.cs
  4. 0
      ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributes.cs
  5. 14
      ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj
  6. 2
      ICSharpCode.Decompiler/Tests/Types/EnumTests.cs
  7. 0
      ICSharpCode.Decompiler/Tests/Types/S_DelegateConstruction.cs
  8. 0
      ICSharpCode.Decompiler/Tests/Types/S_EnumSamples.cs
  9. 0
      ICSharpCode.Decompiler/Tests/Types/S_PropertiesAndEvents.cs
  10. 0
      ICSharpCode.Decompiler/Tests/Types/S_ValueTypes.cs
  11. 6
      ICSharpCode.Decompiler/Tests/Types/TypeTests.cs

6
ICSharpCode.Decompiler/Tests/CustomAttributes/CustomAttributeTests.cs

@ -11,19 +11,19 @@ namespace ICSharpCode.Decompiler.Tests.CustomAttributes @@ -11,19 +11,19 @@ namespace ICSharpCode.Decompiler.Tests.CustomAttributes
[StaticTestFactory]
public static IEnumerable<Test> CustomAttributeSamples()
{
return GenerateSectionTests(@"CustomAttributes\CustomAttributeSamples.cs");
return GenerateSectionTests(@"CustomAttributes\S_CustomAttributeSamples.cs");
}
[Test]
public void CustomAttributesMultiTest()
{
ValidateFileRoundtrip(@"CustomAttributes\CustomAttributes.cs");
ValidateFileRoundtrip(@"CustomAttributes\S_CustomAttributes.cs");
}
[Test]
public void AssemblyCustomAttributesMultiTest()
{
ValidateFileRoundtrip(@"CustomAttributes\AssemblyCustomAttribute.cs");
ValidateFileRoundtrip(@"CustomAttributes\S_AssemblyCustomAttribute.cs");
}
}
}

0
ICSharpCode.Decompiler/Tests/CustomAttributes/AssemblyCustomAttribute.cs → ICSharpCode.Decompiler/Tests/CustomAttributes/S_AssemblyCustomAttribute.cs

0
ICSharpCode.Decompiler/Tests/CustomAttributes/CustomAttributeSamples.cs → ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributeSamples.cs

0
ICSharpCode.Decompiler/Tests/CustomAttributes/CustomAttributes.cs → ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributes.cs

14
ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj

@ -54,16 +54,16 @@ @@ -54,16 +54,16 @@
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="Types\EnumSamples.cs" />
<None Include="CustomAttributes\AssemblyCustomAttribute.cs" />
<None Include="Types\S_EnumSamples.cs" />
<None Include="CustomAttributes\S_AssemblyCustomAttribute.cs" />
<Compile Include="Helpers\RemoveCompilerAttribute.cs" />
<Compile Include="Types\EnumTests.cs" />
<Compile Include="Types\TypeTests.cs" />
<None Include="Types\DelegateConstruction.cs" />
<None Include="CustomAttributes\CustomAttributes.cs" />
<None Include="Types\S_DelegateConstruction.cs" />
<None Include="CustomAttributes\S_CustomAttributes.cs" />
<None Include="Loops.cs" />
<None Include="Types\PropertiesAndEvents.cs" />
<None Include="CustomAttributes\CustomAttributeSamples.cs" />
<None Include="Types\S_PropertiesAndEvents.cs" />
<None Include="CustomAttributes\S_CustomAttributeSamples.cs" />
<Compile Include="CodeSampleFileParser.cs" />
<Compile Include="CustomAttributes\CustomAttributeTests.cs" />
<Compile Include="DecompilerTestBase.cs" />
@ -72,7 +72,7 @@ @@ -72,7 +72,7 @@
<Compile Include="Generics.cs" />
<Compile Include="MultidimensionalArray.cs" />
<Compile Include="TestRunner.cs" />
<None Include="Types\ValueTypes.cs" />
<None Include="Types\S_ValueTypes.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Mono.Cecil\Mono.Cecil.csproj">

2
ICSharpCode.Decompiler/Tests/Types/EnumTests.cs

@ -11,7 +11,7 @@ namespace ICSharpCode.Decompiler.Tests.Types @@ -11,7 +11,7 @@ namespace ICSharpCode.Decompiler.Tests.Types
[StaticTestFactory]
public static IEnumerable<Test> EnumSamples()
{
return GenerateSectionTests(@"Types\EnumSamples.cs");
return GenerateSectionTests(@"Types\S_EnumSamples.cs");
}
}
}

0
ICSharpCode.Decompiler/Tests/Types/DelegateConstruction.cs → ICSharpCode.Decompiler/Tests/Types/S_DelegateConstruction.cs

0
ICSharpCode.Decompiler/Tests/Types/EnumSamples.cs → ICSharpCode.Decompiler/Tests/Types/S_EnumSamples.cs

0
ICSharpCode.Decompiler/Tests/Types/PropertiesAndEvents.cs → ICSharpCode.Decompiler/Tests/Types/S_PropertiesAndEvents.cs

0
ICSharpCode.Decompiler/Tests/Types/ValueTypes.cs → ICSharpCode.Decompiler/Tests/Types/S_ValueTypes.cs

6
ICSharpCode.Decompiler/Tests/Types/TypeTests.cs

@ -11,19 +11,19 @@ namespace ICSharpCode.Decompiler.Tests.Types @@ -11,19 +11,19 @@ namespace ICSharpCode.Decompiler.Tests.Types
[Test]
public void ValueTypes()
{
ValidateFileRoundtrip(@"Types\ValueTypes.cs");
ValidateFileRoundtrip(@"Types\S_ValueTypes.cs");
}
[Test]
public void PropertiesAndEvents()
{
ValidateFileRoundtrip(@"Types\PropertiesAndEvents.cs");
ValidateFileRoundtrip(@"Types\S_PropertiesAndEvents.cs");
}
[Test]
public void DelegateConstruction()
{
ValidateFileRoundtrip(@"Types\DelegateConstruction.cs");
ValidateFileRoundtrip(@"Types\S_DelegateConstruction.cs");
}
}
}

Loading…
Cancel
Save