< Summary

Class:ECSSystems.Helpers.QuaternionHelper
Assembly:ECS7Plugin.Systems.Helpers
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/ECS7/Systems/Helpers/QuaternionHelper.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:15
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Set(...)0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/ECS7/Systems/Helpers/QuaternionHelper.cs

#LineLine coverage
 1using UnityEngine;
 2
 3namespace ECSSystems.Helpers
 4{
 5    public static class QuaternionHelper
 6    {
 7        public static void Set(ref Quaternion target, ref Quaternion source)
 8        {
 129            target.x = source.x;
 1210            target.y = source.y;
 1211            target.z = source.z;
 1212            target.w = source.w;
 1213        }
 14    }
 15}