Package org.jtester.core.testng.report

Examples of org.jtester.core.testng.report.UserGroupDto


    String methodName = method.getMethodName();
    String clazzName = method.getRealClass().getName();
    methods.add(new MethodTestDto(methodName, clazzName, status, duration, groups));

    if (groups == null) {
      UserGroupDto userDto = getUserGroupDto(MethodTestDto.UN_GROUP_NAME);
      userDto.addResult(status);
      return;
    }
    for (String group : groups) {
      UserGroupDto userDto = getUserGroupDto(group);
      userDto.addResult(status);
    }
  }
View Full Code Here


      userDto.addResult(status);
    }
  }

  private static UserGroupDto getUserGroupDto(String group) {
    UserGroupDto userDto = userGroups.get(group);
    if (userDto == null) {
      userDto = new UserGroupDto(group);
      userGroups.put(group, userDto);
    }
    return userDto;
  }
View Full Code Here

TOP

Related Classes of org.jtester.core.testng.report.UserGroupDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.