1 15 package com.panorama.startup.impl; 16 17 import com.panorama.startup.Executable; 18 19 25 public class ExecutableFixture implements Executable 26 { 27 private String _token; 28 29 public ExecutableFixture(String token) 30 { 31 _token = token; 32 } 33 34 37 public void execute() throws Exception 38 { 39 TestTaskExecutor.addToken(_token); 40 } 41 42 } 43 | Popular Tags |