What is it? Automatic linking allows easy linking of JIRA issues with Confluence pages. The activity only needs to be completed on one of the applications for the link to be created for both. Usage Automatic linking allows a user to specific additional detail in the Confluence page that is pertinent and relevant to the …
What is JIRA? | What are versions? | What is the JIRA Resolution field? | What is Automatic Linking? | What is the relationship between Issues, Fields & Schemes? A JIRA project is a collection of issues. Every issue belongs to a project. Each project has a name (e.g. Website Issues) and a key (e.g. …
HPE Application Lifecycle Management (HPE-ALM) is a test management tool used for: The creation of test scenarios, test scripts and test steps to exercise functionality defined in the user stories. Storing defects found during testing activities Creating test plans etc. TaskTop Sync will allow a full set of information to be displayed in both JIRA …
This section contains information about the tools we currently prefer to use across all the products. This section is not testing specific and is meant to serve as a means to catalogue all the tools currently in place to support activities in the development, testing, deployment and operations of the software portfolio of products that …
Similar to the manifesto created for agile development practices, it is important that a similar artefact is maintained for testing activities. This not only gives credibility to the testing activities but clearly outlines what our values and preferences are when it comes to testing in an agile led solution delivery lifecyles. As was the case …
It is important that there is a common understanding of the building blocks that form the foundation of our Testing Practices within software development proces. These building blocks ensure that everyone is knowledgeable about: Why we test? What we value as testers? When we test and how each testing activity drives out more information about …
@Service @Lazy //changes the moment when the bean instance is created ///will not display the actions in postconstruct and predestroy, the context is created and closed //PostConstruct and PreDistroy can also be called directly but this is not compliant to Spring standards //more ofther these methods are marked as private so that they should not …
The java developer can use 2 standard Java annotations to interwine in a bean lifecycle inside a Spring context These annotations are used by ejb, jpa, spring, jsf contexts . @Postconstruct – used for any initialisation In not advisable to give values in a Bean constructor There is a chance that the Postconstructor should not …
@Qualifier @Target(ElementType.FIELD,ElementType.CONSTRUCTOR,ElementType.METHOD,ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) /*Another way to use @Qualifier is to declare an annotation Target must declare type, method, constructor and field to be succesfuly recognized as annotation The java developer needs to declare retention policy runtime to be detected with by the Java Reflection mecanism this annotation can be used to replace @qualifier(bean name) */ …