Hey guy's i'm taking a software testing module and trying to study for the final coming up soon but having a little problem getting my head around some of it the question that was asked last year is
A large activist organisation uses an add-on to their email system for the purpose of calling meetings. Any member who is authorised to do so only needs to send an email with the following data in the Subject line in order to call a meeting:
Date +
Duration +
Location +
1{Agenda item}4
The date must be in the format dd/MMM/yy and the duration must be an integer between 1 and 4 hours, inclusive. (Assume the start time is always the same.) The location must be one of:
Limerick, Galway, Cork and Dublin - case does not matter. The agenda items must be no more than 12 alphabetic characters each but the agenda must not be blank. You are required to design test cases for this system using equivalence classes and boundary value analysis. The design should be documented as follows:
(i) For each equivalence class you create you should specify its class number, its description, whether it is valid/invalid and provide a specific example
How would i write a class for the date when its dd/MMM/yy for example ? any explanation of equivalence classes would also be much appreciated thank you!!
The conditions are
Thus based on valid values, the equivalence classes are:
Test Cases falling under this category are as under:
More examples you can find here: http://www.softwaretestinggenius.com/tutorial-7-to-generate-equivalence-class-test-cases-for-the-next-date-function
About Equivalence partitioning in Software testing you can read here http://istqbexamcertification.com/what-is-equivalence-partitioning-in-software-testing/