Software quality reflects how well a software conforms to given requirements (functional and non-functional), how much it shows characteristics like reliability, efficiency, security, maintainability.
Questions tagged [software-quality]
233 questions
0
votes
3 answers
Why Browser compatibility testing comes in NFR?
I am making a SRS and as per the research that I have done on Non Functional Requirements "Browser compatibility" testing comes in NFR . Please explain why we take "Browser compatibility" in NFR

Devraj
- 294
- 4
- 14
0
votes
2 answers
Software time planning metrics
In software development we all need to planning the time correctly. I want to know what metrics you are using to planning time in all processes of software such as analysis, development, maintenance etc...
Sure there are some great articles that…

Ali Ersöz
- 15,860
- 11
- 50
- 64
0
votes
4 answers
How to Test an Undocumented Web Service?
I came across this question recently, could anyone please help me what should be my approach as a tester.
Suppose, there is a webservice whose functionality have been changed and there is no documentation available of the same. What will be your…

Pritam Karmakar
- 2,773
- 5
- 30
- 49
0
votes
1 answer
Web Services Quality Factors Cons
Is there any disadvantages using web services affecting any of the quality factors...??
I found a lot of advantages of them like supporting interoperability and reusability.. but I don't find any cons of web services...

Ibrahim.I
- 229
- 1
- 4
- 18
0
votes
4 answers
Deploying a big test disguised as a program
If someone has created a small diagnostic, internal web app that uses (unit) tests as its logic, is there ever a valid reason to do that? Keep in mind that Nunit has to be deployed as well where ever this website goes.
I'm of the view that programs…

4thSpace
- 43,672
- 97
- 296
- 475
-1
votes
0 answers
SonarQube don't scan specific files
In sonarqube-10.1.0.73491 I need to scan specific files, but the result don't pass a scan in some file (img 1), I don't know why. The project is an ASP.NET with many solutions. The compile don't have errors.
I try to use the…

Mr Usher
- 21
- 5
-1
votes
1 answer
how to count how many lines each function has in a Python file?
I'm doing research on software engineering.
I need to measure how many lines each function or class has in each file.
Another interesting metric would be the number of functions and the cyclomatic complexity of each one.

Fernanda Almeida
- 7
- 2
-1
votes
1 answer
Find inputs to a function which break the postcondition on the output
I have a function in a programming language, e.g. C. I require the output of the function to meet a certain condition. If there is some input to this function for which the output does not meet the required condition, I need to find any such exact…

Dávid Natingga
- 839
- 3
- 13
- 30
-1
votes
2 answers
Writing a computer program that will analyse the quality of another computer program?
I'm interested in knowing the possibilities of this. I'm working on a project that validates the skills of a software engineer, currently we validate skills based on code reviews by credentialed developers.
I know the answer if far more completed…

thatguyjono
- 506
- 2
- 7
- 16
-1
votes
1 answer
Why can't smoke testing be done by developer?
By reference from :
http://istqbexamcertification.com/what-is-smoke-testing-when-to-use-it-advantages-and-disadvantages-2/
Smoke testing is used in the following scenarios:
It is done by developers before giving build to the testing team.
It is…

G.S.Tomar
- 290
- 2
- 14
-1
votes
1 answer
Architecture style for uber like application
I am creating architecture and design for a uber like android application. I want to ask which architecture style(layered,mvc,pipe and filter or etc) would be more appropriate for such application? And why? I know for many android apps mvc would be…

user4736473
- 23
- 2
- 4
-1
votes
2 answers
Improve custom comparator code quality
Any better way to write this comparator?
Comparator comparator = (op1,op2) -> {
Integer id1 = Integer.valueOf(String.valueOf(op1.get(field)));
Integer id2 = Integer.valueOf(String.valueOf(op2.get(field)));
…

user3727540
- 922
- 3
- 11
- 30
-1
votes
3 answers
How you assure software's code quality? Is it worth it in an agile environment?
First of all sorry for the codeless question, but I like to clarify one thing.
I have a senior developer in a team who is actively pushing for code quality - merge request reviews, no crappy code and similar. But most of the other guys in the team…

funguy
- 2,072
- 7
- 30
- 41
-1
votes
1 answer
Can one Test case is depend on multiple Test Scenarios?
Can one Test case is depend on multiple Test Scenarios ?
we write test cases on the basis of Test Scenarios.
there can be one is to many relationship in this situation
So is there possibilities that we can derive or link one test case to…

Yogies
- 1
-1
votes
1 answer
Function-point measure in quality control or assurance
I am looking for 3 examples of how I can use function-point measure in quality control or assurance over some other simpler measures i.e. 3 examples where function-points are preferable over some other simpler methods in quality control/assurance.

user1277070
- 765
- 3
- 10
- 15