We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f29abd + 36d7d73 commit 63b5a81Copy full SHA for 63b5a81
Rubberduck.Core/UnitTesting/IFakes.cs
@@ -8,7 +8,7 @@ public interface IFakes
8
9
public interface IFakesFactory
10
{
11
- IFakes GetFakes();
+ IFakes Create();
12
void Release(IFakes fakes);
13
}
14
Rubberduck.Core/UnitTesting/TestEngine.cs
@@ -74,7 +74,7 @@ public void Run(IEnumerable<TestMethod> tests)
74
.Where(test => test.Declaration.QualifiedName.QualifiedModuleName.ProjectId == capturedModule.Key.ProjectId
75
&& test.Declaration.QualifiedName.QualifiedModuleName.ComponentName == capturedModule.Key.ComponentName);
76
77
- var fakes = _fakesFactory.GetFakes();
+ var fakes = _fakesFactory.Create();
78
try
79
80
Run(module.Key.FindModuleInitializeMethods(_state));
0 commit comments