-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EPMRPP-87358 || Mark launch as important #2000
Conversation
@@ -12,18 +13,18 @@ | |||
import org.junit.jupiter.api.BeforeEach; | |||
import org.junit.jupiter.api.Test; | |||
|
|||
public class AttributeHandlerTest { | |||
public class RetentionPolicyAttributeHandlerTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a Javadoc comment.
@Autowired | ||
public UpdateLaunchHandlerImpl(GetProjectHandler getProjectHandler, | ||
GetLaunchHandler getLaunchHandler, LaunchAccessValidator launchAccessValidator, | ||
LaunchRepository launchRepository, LogIndexer logIndexer, | ||
Map<AnalyzerType, LaunchAnalysisStrategy> launchAnalysisStrategyMapping, | ||
@Qualifier("uniqueErrorAnalysisStarterAsync") | ||
UniqueErrorAnalysisStarter uniqueErrorAnalysisStarter) { | ||
UniqueErrorAnalysisStarter uniqueErrorAnalysisStarter, LaunchAttributeHandlerService launchAttributeHandlerService) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 123).
|
||
import com.epam.ta.reportportal.entity.launch.Launch; | ||
|
||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary javadoc is missing.
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Component; | ||
|
||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First sentence of Javadoc is missing an ending period.
No description provided.