Template Method

By learnedtheotherday

pattern. an abstract method in a superclass just calling methods implemented in subclasses, so that call order always remains the same


runTest(){

  setUp();

  run();

  tearDown();

}

Tags: ,