~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/UnitTests/MonoDevelop.AspNet/AspNetTesting.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-10 16:54:48 UTC
  • mfrom: (19.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100910165448-0rybfk25zd4o9431
Tags: 2.4+dfsg-2
* debian/patches/inject_Mono.Debugger.Soft_source.patch,
  debian/patches/use_system_Mono.Debugger.Soft.patch,
  debian/control:
  + Build against system Soft Debugger, since we now have a new
    enough Mono to match MonoDevelop's required API

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
// THE SOFTWARE.
26
26
 
27
27
using System;
28
 
using MonoDevelop.Projects.Gui.Completion;
 
28
using MonoDevelop.Ide.CodeCompletion;
29
29
using MonoDevelop.Projects;
30
30
using MonoDevelop.Projects.Dom.Parser;
31
31
 
58
58
                        var tww = new MonoDevelop.CSharpBinding.Tests.TestWorkbenchWindow ();
59
59
                        var sev = new MonoDevelop.CSharpBinding.Tests.TestViewContent ();
60
60
                        var project = new AspNetAppProject ("C#");
61
 
                        project.FileName = "/tmp/a" + pcount + ".csproj";
 
61
                        project.FileName = UnitTests.TestBase.GetTempFile (".csproj");
62
62
                        
63
 
                        string file = "/tmp/test-file-" + (pcount++) + extension;
 
63
                        string file = UnitTests.TestBase.GetTempFile (extension);
64
64
                        project.AddFile (file);
65
65
                        
66
66
                        ProjectDomService.Load (project);