Questions tagged [software-quality]

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.

233 questions
0
votes
1 answer

Is there a tool (like SonarCloud) to check Flutter code quality?

As SonarCloud doesn't support Flutter/Dart I was wondering if there is an alternative for checking the code quality of Flutter projects.
0
votes
2 answers

How to run a hdfs cat command and read output file using Java

I need to run following command 'hdfs dfs -cat /user/username/data/20220815/EDHSB.CSV', which shows the contents of the CSV file (present in remote HDFS). To implement the above I have used below code: try{ String shpath="hdfs dfs -cat…
Raghu K
  • 57
  • 1
  • 10
0
votes
1 answer

How to perform automated test in webview

I have Android native app and I want to test login page witch was developed using webview that’s open central Authenticator. I’m trying to use appium to test but I’ve see that appium cannot test webview
0
votes
1 answer

How do you send push notifications with Android if the user is logged out of the app?

This isn't too technical of a question. I'm currently writing an article for push notifications on Android devices. I don't need code, per se, but if a user is logged out of an application (via the system timing out), how do they receive push…
Adam Smock
  • 61
  • 6
0
votes
1 answer

Gitlab code quality E0401: unable to import

I am using gitlab code quality with Code-Quality.gitlab-ci.yml in my configuration (it relies on Code Climate), and I have import errors on the code quality report as shown below: I also have the libraries (pandas here) in requirements.txt at the…
Adrien Pacifico
  • 1,649
  • 1
  • 15
  • 33
0
votes
0 answers

Why do libraries prefer to obfuscate the code or provide no debug information instead of creating a special version containing debug information?

In libraries, we often see specific code for debug. It can sometimes really mess up the code. I don't see libraries that use 2 versions of the code. 1 version without debug information and 1 other with debug information. There are advantages and…
antho
  • 534
  • 4
  • 18
0
votes
0 answers

what are the difference between test cases and test scenarios in manual testing

What are the difference between test cases and test scenarios in manual testing? and also as a fresher I have to know about how to write test cases and test scenarios
0
votes
1 answer

JS - When to declare optional arguments?

Imagine this method: export default function useListenDeletedChatMessages( chatRoomId = undefined, { onNext = undefined, onError = undefined, } = {} ) { const { modifyMessage } = useMessages(); const startAt = useRef(new…
Raul
  • 2,673
  • 1
  • 15
  • 52
0
votes
0 answers

Better Way to Deal with Data from Database and Lists

I have TextField and onChange function it filters ListView, so is it better get whole item from table and save them in list then when change text filter that list or open stream get data from table every single change in search TextField? I have…
mhmd
  • 395
  • 4
  • 19
0
votes
3 answers

Can all code optimization by Lisp compile-time evaluation be achieved by an ideal compiler in other languages (such as C++)?

In Lisp you can optimize code by evaluating conditionals during compile time in a Macro. As in, you have a macro (compute-for-N 1) evaluate to code-1 and (compute-for-N 2) evaluate to code-2. If you write something similar in C++, a very naïve…
0
votes
1 answer

Open-Source Security Testing Methodology (OSSTMM)

Open-Source Security Testing Methodology (OSSTMM) can this testing metholody applied for software applications for test its secuirty concerns ?
Sudantha
  • 15,684
  • 43
  • 105
  • 161
0
votes
1 answer

Checkstyle checkstyle-checker.xml gets overriden when multiple configs are used

I need to separate the checkstyle plugin configs for production and test source code. I managed to do it (see the config bellow), but there is 'checkstyle-checker.xml' file which is always overriden and stays in the root of the target directory. Is…
Yurii Bondarenko
  • 3,460
  • 6
  • 28
  • 47
0
votes
1 answer

Failed to connect XCAutomation in Appium

I try to connect my iPhone to Appiunm it connected but once I try to run the device or run the installed application the error message got as "Failed to connect XCAutomation" My iOS version is 14.4.2 and I use windows. Is there any solutions. Find…
0
votes
2 answers

How does MISRA C++ Code Compliance ensure Functional safety and Quality?

Could Anyone explain to me how MISRA C++(2008) is in incompliance with functional safety(ISO 26262), If it is really in compliance with which rules contribute to functional safety? Is there a document or proof stating that MISRA C++ is in Compliance…
0
votes
0 answers

Which compilers provide guarantees (warranties) on generated asm code?

Please note that the question is about compilers in general, not targeting any particular programming language. Context: As we know, compilers like gcc and Clang (LLVM) do not provide any guarantees (warranties) on generated asm code by explicitly…
pmor
  • 5,392
  • 4
  • 17
  • 36