| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Challengestring |
|
| 1.0;1 |
| 1 | package jp.co.y_net.amm.service; | |
| 2 | ||
| 3 | import org.apache.commons.lang.RandomStringUtils; | |
| 4 | import org.springframework.stereotype.Component; | |
| 5 | ||
| 6 | @Component("challengestring") | |
| 7 | 0 | public class Challengestring { |
| 8 | public String execute() { | |
| 9 | 0 | String str = RandomStringUtils.randomAlphabetic(16); |
| 10 | 0 | return str; |
| 11 | } | |
| 12 | ||
| 13 | } |