Changes between Version 13 and Version 14 of HowtoBugBuster
- Timestamp:
- Oct 12, 2019, 8:37:37 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowtoBugBuster
v13 v14 7 7 8 8 === What? Why? === 9 If you think that searching for bugs is just run an application to see if it launches, then you need to continue reading this or work on something else, like translations.9 If you think that searching for bugs is just run an application to see if it launches, then you need to read this howto 10 10 11 I s very helpful to have some programming knowledges to do beta-testing, becauseon that way you know ''what common things could happen''11 If you have programming knowledge it can be very helpful so on that way you know ''what common things could happen'' 12 12 13 Well, first of all, trying to just launch the application to see if does not segfaults doesn't give anything useful, in short this is exactly what the developer does in every modification of the code, the task of a beta-tester is not to see if it works but to ''see if it can fail'', in short, it is like a challenge trying to find any possible problem, and yes, it is something '''good''' if you find any.13 First of all, trying to just launch the application to see if does not segfaults doesn't give anything useful, in short this is exactly what the developer does in every modification of the code, the task of a beta-tester is not to see if it works but to ''see if it can fail'', in short, it is like a challenge trying to find any possible problem, and yes, it is something '''good''' if you find any. 14 14 15 15 There is a good numbers of ways to catch bugs, so let me show you some of the ways that I already know: