LET'S DEVELOP TOGETHER YOUR SECURED PRODUCT, TEST IT AND OPTIMIZE IT FOR SUCCESS

Biometric authentification system pour web service and Citrix Windows avec biometric fingerprint et autres biometric méthode

Jira – What is Automatic Linking? Relationships between Jira issues

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 …

Jira – Definitions, Version, Resolution

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. …

Test Management

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 …

Our prefered tools – Core Agile Toolset

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 …

Quality is non-negotiable and we should all know what good looks like

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 …

Building blocks of the test automation framework we can build for your business

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 …

Configure SauceLab automated mobile test with Appium

[caps] platformName = “Android” deviceName = “Android Emulator” platformVersion = “4.4” appium-version = “1.3.4” device-orientation = “portrait” app = “sauce-storage:Your.apk” record-video = “true” max-duration = “3000” command-timeout = “600” idle-timeout = “1000” language = “en” debug = “true” wait = “60” [appium_lib] sauce_username = “yourusernameonSaucelabs” sauce_access_key = “youracckey” server_url = “http://lusername:deviceeria@ondemand.saucelabs.com:80/wd/hub” debug = “true” wait …

Callback lifecycle of Beans in Spring Framework Part2 – LAzy annotation

@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 …

Callback lifecycle of Beans in Spring Framework Part1

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 annotation in Spring part 4

@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) */ …