- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Integration and qualification tests for an application
I'm trying to realize a calculator using JAVA, so I'm following these stages:
- Needs analysis (specifications)
- UML diagrams
- Programming
- Unit testing
- Integration and qualification tests
for Unit testing I'm using JUnit but I don't know what I'm gonna need to accomplish the fifth stage.
โ07-24-2022 11:26 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Integration testing -- also known as integration and testing (I&T) -- is a type of software testing in which the different units, modules or components of a software application are tested as a combined entity.
โ07-25-2022 08:44 PM - last edited on โ07-25-2022 10:27 PM by KH-Taylarie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Integration testing -- also known as integration and testing (I&T) -- is a type of software testing in which the different units, modules or components of a software application are tested as a combined entity.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i would say that 'integration' test should check how does your js code 'integrate' with rest of the application. that is if it sends and receives correct messages to/from backend, if it communicates correctly with browser storage etc. What you describe looks like a unit test
definition is quite good, according to International Software Testing Qualifications Board (ISTQ) syllabus : istqb.org/downloads/syllabi/foundation-level-syllabus.html /echatspin /echatrandom
i don't know nightwatch but according to their page
Nightwatch.js is an easy to use Node.js based End-to-End (E2E) testing solution for browser based apps and websites
it should get the job done
โ12-09-2022 02:08 AM