< Summary

Class:DCL.EditorEnvironment.EditorEnvironmentSetup
Assembly:EditorEnvironment
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Environment/EditorEnvironment/EditorEnvironmentSetup.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:14
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Execute()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Environment/EditorEnvironment/EditorEnvironmentSetup.cs

#LineLine coverage
 1using System;
 2
 3namespace DCL.EditorEnvironment
 4{
 5    public class EditorEnvironmentSetup
 6    {
 7        public static IDisposable Execute()
 8        {
 09            var serviceLocator = ServiceLocatorEditorFactory.Create();
 010            Environment.Setup(serviceLocator);
 011            return Environment.i;
 12        }
 13    }
 14}

Methods/Properties

Execute()