test fixed
[fedora-idea.git] / platform / smRunner / src / com / intellij / execution / testframework / sm / runner / ui / TestProxyTreeSelectionListener.java
blob3a1105036fa89f0d12d01edcc4dc703156143f07
1 package com.intellij.execution.testframework.sm.runner.ui;
3 import com.intellij.execution.testframework.ui.PrintableTestProxy;
4 import com.intellij.execution.testframework.TestFrameworkRunningModel;
5 import org.jetbrains.annotations.NotNull;
6 import org.jetbrains.annotations.Nullable;
8 /**
9 * @author Roman Chernyatchik
11 public interface TestProxyTreeSelectionListener {
12 /**
13 * When element in tree was selected
14 * @param selectedTestProxy Selected Element
15 * @param viewer
16 * @param model
18 void onSelected(@Nullable PrintableTestProxy selectedTestProxy,
19 @NotNull TestResultsViewer viewer,
20 @NotNull TestFrameworkRunningModel model);