Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi all,
I'm new bees in oops i want to know more about Cyclomatic complexity ?
Help me please.
Posted

First try google for this then asked question,
What is cyclomatic complexity?[^]
Basically cyclomatic complexity testing techanique is used to insure that every part of software must tested.
to find of cyclomatic complexity
there are three way
1)FLOW GRAPH<br />
2)By using Edges and nodes<br />
   E(edges)-N(Nodes)+2<br />
3)By using Predicted nodes<br />
   Predicted nodes+1
 
Share this answer
 
It is basically a software metric used to analyse the execution path of programs, looking at loops and linear lines of execution.

You can read more here; http://en.wikipedia.org/wiki/Cyclomatic_complexity[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900