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
1 answer
Assert the tested class internal objects
I am using Easy mock.
I call a method of my actual class from my Test class.
Inside that method I create an object called 'A' on the fly with child objects.
I pass that object 'A' to a remote service and a output returns.
I don't want to asset…

nilan59
- 1,006
- 9
- 24
0
votes
0 answers
How to write tests in android studio and how to deal with them
I have been developing apps in android studio for around 2 years and i know that each developer can write tests but i have never done it before.
I read what is documented on the official developer.android website but i didn`t received the results i…

Mohammad Haidar
- 1,109
- 1
- 16
- 35
0
votes
1 answer
Making all plugin specific rules strict
In eslint.json configuration, ESLint allows to configure rule strictness using the following logic:
0 - "off"
1 - "warning"
2 - "error"
Example:
{
"rules": {
"jasmine/valid-expect": 2,
"eqeqeq": [2, "smart"]
}
}
Question: Is it…

alecxe
- 462,703
- 120
- 1,088
- 1,195
0
votes
2 answers
Can anyone tell me which is the best way to test abn web application
I am a QA engineer ,I would like to know what are the methods that i can follow to test a web application. What does and doesn't.

Anand K G
- 99
- 1
- 1
- 10
0
votes
1 answer
How do I use a website quality checker if the website has a login page?
I'm trying to test a website for 508 compliance, but it has a login page.
I've tried downloading pages of the whole website as an html file. But no site allows you to upload .html files, only links.

ohnoyoufoundthis
- 49
- 1
- 6
0
votes
1 answer
Tool used to retrieve code metrics in xUnit Test Patterns?
I'm reading xUnit Test Patterns by Gerard Meszaros.
On one of the pages he refers to some software metrics:
While the need to wrap lines to keep
them at 65 characters makes this code
look even longer than it really is, it
is still…

leeand00
- 25,510
- 39
- 140
- 297
0
votes
4 answers
Which single software quality aspect you always strive to achieve?
Is it performance, scalabilty, maintainability, usability or what ? What is it that you always strive to achieve while creating a good software or application and why ?
I always prefer maintainability above anything. It's ok if its not otimized or…

this. __curious_geek
- 42,787
- 22
- 113
- 137
0
votes
1 answer
How to determine UFC of an address book program
I am trying to find the Unadjusted function count(UFC) for an address book program. According to the research I conducted on the internet, I found out that I need to measure the following:
External inputs.
External outputs.
External inquiries.…

Mikle
- 1
- 1
0
votes
1 answer
Does someone have used Network Emulator API exposed in VS 2010
I have seen VS2010 exposing Network Emulator API. I have installed it and trying to use this API, but not able detect whether it is really running with this code or not. Sometime I have given wrong profile name but it does not throw any error.…

Pritam Karmakar
- 2,773
- 5
- 30
- 49
0
votes
2 answers
Who makes software validation? What are the steps of its?
Fill in the X,Y,Z please.
Software validation has X,Y,Z steps.
Client have to provide X,Y,Z to the developer before starting to write software.
When software finished, validation completes with doing X,Y,Z (sign, approval, test
pictures,…

uzay95
- 16,052
- 31
- 116
- 182
0
votes
1 answer
What the best practices to organize packages for automated tests?
I am the only person in QA in my company and I would like to introduce automation test with WebDriver, Cucumber, Java. What is the best way for organize my packages?
Heading
src/main/java
com.mycompany.myapp.pageobject
selenium classes
…

Davson Ramos
- 3
- 1
0
votes
0 answers
Print Label Text Quality
I have read a lot of similar questions about printing panels and its contents but i haven read any good answer, they just mention about the pixel difference of the printer and monitor.
But how can I achive printing a simple text label with good…

MoralesJosue
- 199
- 1
- 4
- 16
0
votes
2 answers
sonarqube 4.0 preview analysis (local)
I want to throw preview analysis (local) with eclipse sonar plugin and remote sonarqube 4.0.
What information transfer between eclipse and remote sonarqube 4.0? That preview or local analysis could be pass only profile rules and process is only…

user3815289
- 3
- 1
0
votes
2 answers
How to handle such scenarios?
When a software is developed,various types of testing is done - unit,integration,functional,manual.In my current project(winforms with sql server),which has legacy code(no tests),we do have lot of bugs.
We are trying to remove them using combination…

junky_user
- 385
- 1
- 3
- 10
0
votes
1 answer
No access to source code, still possible for automated end-to-end testing?
I'm dealing with a legacy application and I have no access to its source code. It's a Windows application written in PowerBuilder.
Is it possible to do automated end-to-end testing on an application that I have no access to its source code? I…

Carven
- 14,988
- 29
- 118
- 161