Agile Testing
š Definition:
- Agile testing follows an iterative development process,
- integrating continuous testing into short sprints (1-2 weeks).
- Testing happens in parallel with development rather than at the end.
šÆ My expertise collaborating with developers in an Agile environment
- Google (Fitbit) Example: I worked in an Agile Scrum team where testing was integrated into each sprint. I participated in daily stand-ups, worked closely with developers to clean up regression tests, and helped refine testing criteria/requirement.
- Plangrid (Autodesk) Example: I worked in an Agile team where testing was integrated into each sprint. I participated in daily stand-ups, worked closely with developers to automate API tests using Postman, and helped refine user stories to include testability criteria.ā
ā My role in sprint cycles and CI/CD testing (Plangrid/Autodesk)
- Plangrid (Autodesk) Example:
- As a QA lead, I ensured that all new features were tested within the sprint cycle using automated Postman scripts, executed in Jenkins as part of our CI/CD pipeline.
ā My early-stage testing & shift-left approach (Google, Amazon, Plangrid)
- Example: In Agile teams, I implemented a Shift-Left testing approach, where we wrote test cases alongside developers before coding began. This helped reduce defects and ensure testability from the start.
ā Agile testing types (TDD, BDD, exploratory testing, regression automation)
- Google (Assistant) Example:
- I used Behavior-Driven Development (BDD) with Cucumber to ensure test cases were written in human-readable language and aligned with business expectations.
ā My collaboration with Product & Development teams
- Example: I actively participated in backlog grooming, and retrospectives to ensure test coverage for new and established features.
- Note: to review and prioritize items in the product backlog to ensure they are ready for future sprints is something not every company does.
DRAFT!
Testing Types Relevant to Appleās Mobile Apps/E-commerce
1ļøā£ Functional Testing
- Ensures each feature works as expected.
- Example: Verifying āAdd to Bagā correctly updates the cart.
Test Approaches:
- Unit Testing: XCTest for Swift-based API validation.
- UI Testing: XCUITest for UI workflows.
- Integration Testing: Checking backend (APIs) and frontend connections.
2ļøā£ Regression Testing
- Ensures new updates donāt break existing features. Example: Running automated XCUITest scripts after adding a new payment method.
Key Areas:
- Login,
- Checkout,
- Search,
- Cart,
- (Amazon: Wishlist),
- Payment Processing.
3ļøā£ Performance Testing
- Measures app speed, responsiveness, and stability under different conditions.
Example: Checking how the Apple Store app handles high user traffic during iPhone pre-orders. Tools: Instruments (Xcode), XCTest, Firebase Performance Monitoring.
Key Metrics:
- Launch Time (App should open within 2s).
- Response Time (API calls < 200ms).
- Battery Consumption & Memory Usage.
4ļøā£ Usability Testing
- Ensures the app is intuitive, accessible, and user-friendly.
Example: Testing the checkout flow for one-handed use, VoiceOver accessibility.
Key Areas:
- Navigation & UI Consistency (Does āAdd to Bagā button look tappable?).
- Text Readability (Dynamic Type support).
- Error Handling (Clear error messages, retry options).
5ļøā£ Compatibility Testing
- Ensures the app works across all iPhone, iPad, and macOS devices.
Example: Testing Apple Store app on iPhone SE, iPhone Pro Max, iPad Pro.
Key Areas:
- Screen sizes,
- iOS versions,
- dark mode,
- accessibility features.
6ļøā£ Localization Testing
- Verifies language translations, currency formats, date/time formats.
Example: Checking if French and Japanese translations display correctly.
Key Areas:
- RTL support,
- currency conversions,
- region-specific offers.
Functional Testing:
Unit Testing: Focuses on testing individual components or units of code in isolation. Ā
Integration Testing: Verifies that different units or modules of the application work together correctly. Ā
System Testing: Evaluates the complete, integrated system to ensure it meets specified requirements. Ā
End-to-End Testing: Tests the applicationās workflow from beginning to end, simulating real-user scenarios. Ā Acceptance Testing (User Acceptance Testing - UAT): Determines whether the application meets the end-userās needs and business requirements. Ā
Functional Testing: done a lot Unit Testing: just for me privately Integration Testing: some System Testing: not really except with Oculus 3. Evaluates the complete, integrated system to ensure it meets specified requirements. Ā End-to-End Testing: Done - a lot Acceptance Testing (User Acceptance Testing - UAT): Done - a lot
Non-Functional Testing:
Performance Testing:
Evaluates the applicationās speed, stability, and responsiveness under various workloads. Ā Includes: Load Testing: Assessing performance under expected user loads. Ā Stress Testing: Testing beyond normal capacity to find breaking points. Ā Scalability Testing: Evaluating the applicationās ability to handle increasing workloads. Ā Security Testing: Identifies vulnerabilities and weaknesses in the applicationās security. Ā Usability Testing: Evaluates the ease of use and user-friendliness of the application. Ā Compatibility Testing: Ensures the application works correctly across different browsers, operating systems, and devices. Ā Accessibility Testing: Ensures that applications are usable by people with disabilities. Ā Other Important Testing Types:
Performance Testing: Done - a lot Includes: Stress Testing: Scalability Testing: Usability Testing: Compatibility Testing: Accessibility Testing:
Regression Testing:
Verifies that new code changes do not negatively impact existing functionality. Ā
Smoke Testing:
Performs a quick check of the applicationās core functionality to ensure it is stable enough for further testing. Ā Sanity Testing: Performed after bug fixes, to ensure that the fixes worked, and that no new issues were introduced. Ā Black-Box Testing: Testing without knowledge of the applicationās internal code. Ā White-Box Testing: Testing with knowledge of the applicationās internal code. Gray-Box Testing: A combination of black box and white box testing.
Done - a lot Smoke Testing: Done - a lot Sanity Testing: Done - a lot Black-Box Testing: Done - a lot White-Box Testing: not for software