Esempio n. 1
0
 public void Setup()
 {
     smell    = new LongScopeChaining();
     detector = new ProcessingAstSmell(smell);
 }
Esempio n. 2
0
 public void Setup()
 {
     smell    = new ExcessivelyLongIdentifiers();
     detector = new ProcessingAstSmell(smell);
 }
Esempio n. 3
0
 public void Setup()
 {
     smell    = new LongMethod();
     detector = new ProcessingAstSmell(smell);
 }
 public void Setup()
 {
     smell    = new SmallSwitchStatement();
     detector = new ProcessingAstSmell(smell);
 }
 public void Setup()
 {
     smell    = new LongChainingOfDotFunctions();
     detector = new ProcessingAstSmell(smell);
 }
 public void Setup()
 {
     smell    = new TooManyParametersFunction();
     detector = new ProcessingAstSmell(smell);
 }