Skip to content

Commit

Permalink
Merge pull request #110 from AmadeusW/update
Browse files Browse the repository at this point in the history
Fixes CS0138
  • Loading branch information
JoshVarty committed Feb 11, 2015
2 parents 2f7ddc7 + 49ec925 commit 9848ba0
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/SourceBrowser.Tests/CSharpTests.cs
@@ -1,7 +1,7 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.CodeAnalysis.UnitTests;
using Microsoft.CodeAnalysis.UnitTests.SolutionGeneration;
using Generate = Microsoft.CodeAnalysis.UnitTests.SolutionGeneration;
using Microsoft.CodeAnalysis;
using System.Linq;
using SourceBrowser.Generator.Model;
Expand All @@ -18,10 +18,10 @@ public void SanityCheck()
{
//Set up the absolute minimum
var solution = base.Solution(
Project(
ProjectName("Project1"),
Sign,
Document(
Generate.Project(
Generate.ProjectName("Project1"),
Generate.Sign,
Generate.Document(
@"
class C1
{
Expand Down Expand Up @@ -53,10 +53,10 @@ class C1
public void BasicLinking()
{
var solution = base.Solution(
Project(
ProjectName("Project1"),
Sign,
Document(
Generate.Project(
Generate.ProjectName("Project1"),
Generate.Sign,
Generate.Document(
@"
class C1
{
Expand Down Expand Up @@ -97,10 +97,10 @@ public void Method2()
public void TestParameters()
{
var solution = base.Solution(
Project(
ProjectName("Project1"),
Sign,
Document(
Generate.Project(
Generate.ProjectName("Project1"),
Generate.Sign,
Generate.Document(
@"
class C1
{
Expand Down Expand Up @@ -138,10 +138,10 @@ public void M1(string p1, int p2, C1 p3)
public void TestLocals()
{
var solution = base.Solution(
Project(
ProjectName("Project1"),
Sign,
Document(
Generate.Project(
Generate.ProjectName("Project1"),
Generate.Sign,
Generate.Document(
@"
class C1
{
Expand Down Expand Up @@ -180,10 +180,10 @@ public void M1()
public void TestExtensionMethods()
{
var solution = base.Solution(
Project(
ProjectName("Project1"),
Sign,
Document(
Generate.Project(
Generate.ProjectName("Project1"),
Generate.Sign,
Generate.Document(
@"
public static class MyExtensions
{
Expand Down

0 comments on commit 9848ba0

Please sign in to comment.