< Summary

Information
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 98
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 2
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
File 1: InitializeComponent()100%210%
File 2: InitializeComponent()0%620%

File(s)

D:\a\OffRouteMap\OffRouteMap\App.xaml

#LineLine coverage
 01<Application x:Class="OffRouteMap.App"
 2             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 4             xmlns:local="clr-namespace:OffRouteMap"
 05             StartupUri="MainWindow.xaml">
 6    <Application.Resources>
 7        <ResourceDictionary>
 8            <ResourceDictionary.MergedDictionaries>
 9                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
 10                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
 11            </ResourceDictionary.MergedDictionaries>
 12        </ResourceDictionary>
 13    </Application.Resources>
 14</Application>

D:\a\OffRouteMap\OffRouteMap\obj\Release\net8.0-windows\App.g.cs

#LineLine coverage
 1#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BD3C0B271F6DDCC22B5F9E815F1291625D3AED45"
 2//------------------------------------------------------------------------------
 3// <auto-generated>
 4//     This code was generated by a tool.
 5//
 6//     Changes to this file may cause incorrect behavior and will be lost if
 7//     the code is regenerated.
 8// </auto-generated>
 9//------------------------------------------------------------------------------
 10
 11using OffRouteMap;
 12using System;
 13using System.Diagnostics;
 14using System.Windows;
 15using System.Windows.Automation;
 16using System.Windows.Controls;
 17using System.Windows.Controls.Primitives;
 18using System.Windows.Controls.Ribbon;
 19using System.Windows.Data;
 20using System.Windows.Documents;
 21using System.Windows.Forms.Integration;
 22using System.Windows.Ink;
 23using System.Windows.Input;
 24using System.Windows.Markup;
 25using System.Windows.Media;
 26using System.Windows.Media.Animation;
 27using System.Windows.Media.Effects;
 28using System.Windows.Media.Imaging;
 29using System.Windows.Media.Media3D;
 30using System.Windows.Media.TextFormatting;
 31using System.Windows.Navigation;
 32using System.Windows.Shapes;
 33using System.Windows.Shell;
 34
 35
 36namespace OffRouteMap {
 37
 38
 39    /// <summary>
 40    /// App
 41    /// </summary>
 42    public partial class App : System.Windows.Application {
 43
 44        private bool _contentLoaded;
 45
 46        /// <summary>
 47        /// InitializeComponent
 48        /// </summary>
 49        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
 50        [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.10.0")]
 51        public void InitializeComponent() {
 052            if (_contentLoaded) {
 053                return;
 54            }
 055            _contentLoaded = true;
 56
 57            #line 5 "..\..\..\App.xaml"
 58            this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
 59
 60            #line default
 61            #line hidden
 62            System.Uri resourceLocater = new System.Uri("/OffRouteMap;component/app.xaml", System.UriKind.Relative);
 63
 64            #line 1 "..\..\..\App.xaml"
 65            System.Windows.Application.LoadComponent(this, resourceLocater);
 66
 67            #line default
 68            #line hidden
 69        }
 70
 71        /// <summary>
 72        /// Application Entry Point.
 73        /// </summary>
 74        [System.STAThreadAttribute()]
 75        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
 76        [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.10.0")]
 77        public static void Main() {
 78            OffRouteMap.App app = new OffRouteMap.App();
 79            app.InitializeComponent();
 80            app.Run();
 81        }
 82    }
 83}
 84