Posts

Showing posts from October, 2024

SDLC, STLC, user's persona, resource planning & bugs

 Use Case vs Test Scenario Use Case - interactions that a user would do in an application - just there to kind of give you a good start for test cases Test Scenario - validating something - more of how a tester would categories their test cases Best practice: - start with Use cases - Go on to Test scenario - then start writing test cases ---------- SDLC - short for Software Development Life Cycle - the different stages needed to develop a software STLC - short for Software Test Life Cycle - the different stages needed to test a software ----------- User's Persona - example; uni student seeking cheap laptop in amazon & a software developer who wants to trade in current laptop for a newer powerful one in amazon - basically, different types of users who will be using the software ---------- Resource planning - allocation of resources based on priority ----------- What is a bug? - deviation from an expected behaviour Severity in terms of logging bugs - is the impact the bug has on ...

What is Software; what are environments; Server vs Cloud based server; Use cases

 What is a software? - client is the one that makes the request     - example: if I type facebook.com from MS edge, edge is the client - server is the one that fulfils the client's request - server have several layers to process the request from the client In SDLC (software development life cycle), there are environments. ---------------- What are environments? - developer/local environment (Local host) - developer will then deploy the code to test environment - test environment is where testers will test the software - sandbox environment / pre-production; this is where UAT happens - production environment; this is the live environment published to the intended end user ------------------ Server Vs Cloud based server Server - usually on premise - have a max capacity Disadvantage: - if on rare occasion, there is an influx on the traffic to the server, it may cause the server to go over the max capacity which can result in slow loading on total shutdown of server - to comb...