2

Do you know of any tools that help us measure coupling and cohesion in the system?

leoap
  • 1,684
  • 3
  • 24
  • 32
noobcoder
  • 23
  • 1
  • 3

1 Answers1

2

You can try static code analisys tools

Depending on the language you use you can use Tools to get several information from static analisys. Personally I use free tool Source Monitor to collect information such as Number of calls and Methods/Class that shows you something related to coupling and cohesion.

You can use Quality Check Tools to (FxCop, Checkstyle, PMD, etc.).

Andrea Colleoni
  • 5,919
  • 3
  • 30
  • 49