Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
TestEntity com.griddynamics.jagger.engine.e1.services.DefaultDataService.getTestByName ( String  sessionId,
String  testName 
)

Returns test entity for specify session's id and test name.

Parameters
sessionId- session's id
testName- name of test
Returns
test entity
Author
Gribov Kirill

Implements com.griddynamics.jagger.engine.e1.services.DataService.

Definition at line 106 of file DefaultDataService.java.

References com.griddynamics.jagger.engine.e1.services.DefaultDataService.getTestsByName().

106  {
107  Map<String, TestEntity> map = getTestsByName(Collections.singletonList(sessionId), testName);
108 
109  TestEntity result = map.get(sessionId);
110  if (result != null) {
111  return result;
112  }
113 
114  return null;
115  }

Here is the call graph for this function: