1 39 40 package com.sun.japex; 41 42 import java.util.Properties ; 43 44 public interface JapexDriver extends Runnable { 45 46 49 public void initializeDriver(); 50 51 54 public void prepare(TestCase testCase); 55 56 59 public void warmup(TestCase testCase); 60 61 64 public void run(TestCase testCase); 65 66 69 public void finish(TestCase testCase); 70 71 74 public void terminateDriver(); 75 76 } 77 | Popular Tags |