~ubuntu-branches/ubuntu/wily/monodevelop/wily

« back to all changes in this revision

Viewing changes to src/addins/NUnit/Services/NUnitTestCase.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (19.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20120527180820-fydl21qnbnfr8w2t
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
                public NUnitTestCase (NUnitAssemblyTestSuite rootSuite, NunitTestInfo tinfo, string className) : base (tinfo.Name)
46
46
                {
47
47
                        this.className = className;
48
 
                        this.pathName  = tinfo.PathName;
 
48
                        this.pathName = tinfo.PathName;
49
49
                        this.rootSuite = rootSuite;
50
 
                }
51
 
                
52
 
                public string ClassName {
53
 
                        get { return className; }
 
50
                        this.TestId = tinfo.TestId;
54
51
                }
55
52
                
56
53
                protected override UnitTestResult OnRun (TestContext testContext)