~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Analysis/UnitTesting/Test/Utils/MockParameter.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
 
2
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
 
3
 
 
4
using System;
 
5
using System.Collections.Generic;
 
6
using ICSharpCode.SharpDevelop.Dom;
 
7
 
 
8
namespace UnitTesting.Tests.Utils
 
9
{
 
10
        public class MockParameter : IParameter
 
11
        {
 
12
                public MockParameter()
 
13
                {
 
14
                }
 
15
                
 
16
                public string Name {
 
17
                        get {
 
18
                                throw new NotImplementedException();
 
19
                        }
 
20
                }
 
21
                
 
22
                public IReturnType ReturnType {
 
23
                        get {
 
24
                                throw new NotImplementedException();
 
25
                        }
 
26
                        set {
 
27
                                throw new NotImplementedException();
 
28
                        }
 
29
                }
 
30
                
 
31
                public IList<IAttribute> Attributes {
 
32
                        get {
 
33
                                throw new NotImplementedException();
 
34
                        }
 
35
                }
 
36
                
 
37
                public ParameterModifiers Modifiers {
 
38
                        get {
 
39
                                throw new NotImplementedException();
 
40
                        }
 
41
                }
 
42
                
 
43
                public DomRegion Region {
 
44
                        get {
 
45
                                throw new NotImplementedException();
 
46
                        }
 
47
                }
 
48
                
 
49
                public string Documentation {
 
50
                        get {
 
51
                                throw new NotImplementedException();
 
52
                        }
 
53
                }
 
54
                
 
55
                public bool IsOut {
 
56
                        get {
 
57
                                throw new NotImplementedException();
 
58
                        }
 
59
                }
 
60
                
 
61
                public bool IsRef {
 
62
                        get {
 
63
                                throw new NotImplementedException();
 
64
                        }
 
65
                }
 
66
                
 
67
                public bool IsParams {
 
68
                        get {
 
69
                                throw new NotImplementedException();
 
70
                        }
 
71
                }
 
72
                
 
73
                public bool IsOptional {
 
74
                        get {
 
75
                                throw new NotImplementedException();
 
76
                        }
 
77
                }
 
78
                
 
79
                public int CompareTo(object obj)
 
80
                {
 
81
                        throw new NotImplementedException();
 
82
                }
 
83
                
 
84
                public bool IsFrozen {
 
85
                        get {
 
86
                                throw new NotImplementedException();
 
87
                        }
 
88
                }
 
89
                
 
90
                public void Freeze()
 
91
                {
 
92
                }
 
93
        }
 
94
}