예제 #1
0
 public void Setup()
 {
     smell    = new LongScopeChaining();
     detector = new ProcessingAstSmell(smell);
 }
예제 #2
0
 public void Setup()
 {
     smell    = new ExcessivelyLongIdentifiers();
     detector = new ProcessingAstSmell(smell);
 }
예제 #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);
 }