File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 10
10
11
11
namespace Rubberduck . Navigation . CodeMetrics
12
12
{
13
- public class ParseTreeMetricsAnalyst : ICodeMetricsAnalyst
13
+ public class CodeMetricsAnalyst : ICodeMetricsAnalyst
14
14
{
15
15
private readonly IIndenterSettings indenterSettings ;
16
16
17
- public ParseTreeMetricsAnalyst ( IIndenterSettings indenterSettings )
17
+ public CodeMetricsAnalyst ( IIndenterSettings indenterSettings )
18
18
{
19
19
this . indenterSettings = indenterSettings ;
20
20
}
Original file line number Diff line number Diff line change 344
344
<Compile Include =" Common\WindowsOperatingSystem.cs" />
345
345
<Compile Include =" Common\UndocumentedAttribute.cs" />
346
346
<Compile Include =" Navigation\CodeExplorer\ICodeExplorerDeclarationViewModel.cs" />
347
+ <Compile Include =" Navigation\CodeMetrics\CodeMetricsAnalyst.cs" />
347
348
<Compile Include =" Navigation\CodeMetrics\CodeMetricsResult.cs" />
348
349
<Compile Include =" Navigation\CodeMetrics\ICodeMetricsAnalyst.cs" />
349
- <Compile Include =" Navigation\CodeMetrics\ParseTreeMetricsAnalyst.cs" />
350
350
<Compile Include =" Navigation\Folders\FolderHelper.cs" />
351
351
<Compile Include =" Refactorings\EncapsulateField\PropertyGenerator.cs" />
352
352
<Compile Include =" Refactorings\ExtractMethod\ExtractedMethod.cs" />
Original file line number Diff line number Diff line change 3
3
using RubberduckTests . Mocks ;
4
4
using RubberduckTests . Settings ;
5
5
using System ;
6
- using System . Collections . Generic ;
7
6
using System . Linq ;
8
7
using System . Text ;
9
- using System . Threading ;
10
- using System . Threading . Tasks ;
11
8
12
9
namespace RubberduckTests . Stats
13
10
{
14
11
[ TestClass ]
15
12
public class ParseTreeMetricsAnalystTests
16
13
{
17
- private ParseTreeMetricsAnalyst cut ;
14
+ private CodeMetricsAnalyst cut ;
18
15
19
16
[ TestInitialize ]
20
17
public void Setup ( )
21
18
{
22
- cut = new ParseTreeMetricsAnalyst ( IndenterSettingsTests . GetMockIndenterSettings ( ) ) ;
19
+ cut = new CodeMetricsAnalyst ( IndenterSettingsTests . GetMockIndenterSettings ( ) ) ;
23
20
}
24
21
25
22
[ TestMethod ]
You can’t perform that action at this time.
0 commit comments