HeaderSIS.jpg

2010T2 Bazinga Lines of Code Metric

From IS480
Jump to navigation Jump to search

Teambazinga.png
Home   Our Team   Project Overview   Project Management   Project Documentation   Team Resources   Team Reflections   Team Photos



Lines of Code Metrics

Overview

Lines of Code Metric
Goal
  • Reduce a high count that might indicate that a type or method is trying to do too much work and should be split up.
Questions
  • Are our methods too complex and doing too much work than required?
Metric
  • The Lines of Code score for our application's methods generated by the Visual Studio’s Metrics plugin. It measures the size of a software program by counting the number of lines in the text of the program's source code.
Uses
  1. Keep in check if most of the methods are modularized enough and easier to maintain and not trying to do too much work.
  2. Identify the method that has the highest complexity score so can zoom into that particular method and review if that method is too long or complex|-