< Summary

Class:Butest
Assembly:Test
File(s):D:/--UnityProject/VR/VRExplorer_subjects/VR-Adventure/Assets/Scripts/Butest.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:19
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0
Covered methods:2
Total methods:2
Method coverage:100% (2 of 2)

Coverage History

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Start()0%000100%
Update()0%000100%

File(s)

D:/--UnityProject/VR/VRExplorer_subjects/VR-Adventure/Assets/Scripts/Butest.cs

#LineLine coverage
 1using System.Collections;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5public class Butest : MonoBehaviour
 6{
 7    public GameObject cube;
 8    // Start is called before the first frame update
 9    void Start()
 410    {
 11
 412    }
 13
 14    // Update is called once per frame
 15    void Update()
 720516    {
 720517        cube.transform.Rotate(0, 3, 0);
 720518    }
 19}

Methods/Properties

Start()
Update()