Discuss a change proposed by Jonathan
to the test navigator code, relating to whether the navigator should show
the name of the test suite, or the name of the file containing the test
suite. There was also an issue with one of the test navigator extensibility
mechanisms being removed. Here was the original proposed fix:
//
ORIGINAL
public
String getText(Object element)
{
if (element instanceof TPFTestSuite) {
TPFTestSuite
ts = (TPFTestSuite) element;
IHyadesTestNavigatorProvider provider = typeProvidersFactory.getProvider(ts.getType());
if (provider != null)
return provider.getText(ts);