Toggle navigation
Home
org.sonar.server.qualityprofile.index.ActiveRuleDoc to org.sonar.db.qualityprofile.ActiveRuleDto
No. of Instances - 8
No. of Commits - 3
No. of Projects - {'sonarqube'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
assertThat(activeRuleDoc.severity())
to
assertThat(activeRuleDoc.getSeverityString())
assertThat(activeRuleDoc.inheritance())
to
assertThat(activeRuleDoc.getInheritance())
activeRuleDoc.key()
to
activeRuleDoc.getKey()
assertThat(activeRuleDoc.severity())
to
assertThat(activeRuleDoc.getSeverityString())
db.activeRuleDao().selectOrFailByKey(dbSession,activeRuleDoc.key())
to
db.activeRuleDao().selectOrFailByKey(dbSession,activeRuleDoc.getKey())
assertThat(activeRuleDoc.severity())
to
assertThat(activeRuleDoc.getSeverityString())
activeRuleDoc.key()
to
activeRuleDoc.getKey()
assertThat(activeRule.severity())
to
assertThat(activeRule.getSeverityString())
assertThat(activeRule.inheritance())
to
assertThat(activeRule.getInheritance())
activeRule.key()
to
activeRule.getKey()
assertThat(activeRuleDoc.severity())
to
assertThat(activeRuleDoc.getSeverityString())
activeRuleDoc.key()
to
activeRuleDoc.getKey()
assertThat(activeRuleDoc.severity())
to
assertThat(activeRuleDoc.getSeverityString())
assertThat(activeRuleDoc.inheritance())
to
assertThat(activeRuleDoc.getInheritance())
activeRuleDoc.key()
to
activeRuleDoc.getKey()
assertThat(activeRuleDoc.severity())
to
assertThat(activeRuleDoc.getSeverityString())
db.activeRuleDao().selectOrFailByKey(dbSession,activeRuleDoc.key())
to
db.activeRuleDao().selectOrFailByKey(dbSession,activeRuleDoc.getKey())
Other
expectedInheritance == null ? ActiveRule.Inheritance.NONE : ActiveRule.Inheritance.valueOf(expectedInheritance)
to
expectedInheritance