Skip to main content

Questions tagged [verification]

Filter by
Sorted by
Tagged with
9 votes
5 answers
3k views

In university, we were introduced to the two terms "verification" and "validation". The definitions can be summarized as follows: Validation checks that the specifications and ...
BenjyTec's user avatar
  • 201
23 votes
8 answers
6k views

Context: we operate in a highly regulated industry (medical), and aim to have automated test cases to cover all of our requirements - allowing us to still release quickly, but safely. We have a ...
Charlie Calver's user avatar
0 votes
2 answers
205 views

I am familiar with and see the benefits of Subresource Integrity (SRI). I understand that with SRI, once you've added a script reference with the correct integrity attribute, if the remote script is ...
Rounin's user avatar
  • 295
0 votes
2 answers
341 views

I am not clear on the usage of diagrams in the requirements engineering and design stages of the project. I assume the design stage follows the requirements engineering stage in the life cycle. I ...
Melanie A's user avatar
  • 349
1 vote
2 answers
214 views

According to what I understand, Requirement validation involves going over the SRS to ensure the requirements are correct with respect to the user's needs. Could you help clarify verifiable ...
Afia R. S.'s user avatar
1 vote
4 answers
4k views

I have always written my if statements like this when I want the negative condition to enter me into the if block. Example 1 if(condition == false){} However, we just hired a new senior on the team ...
Luke Hammer's user avatar
4 votes
2 answers
840 views

In the context of SDLC, I know that Verification and Validation is about verifying the deliverable input from previous phase and validating the output of the current one. And that testing is a phase ...
user6039980's user avatar
-2 votes
3 answers
192 views

From here it was advised: Formal verification needs to have a goal: what precisely do you want to prove? This is a good question. I am very intrigued by the idea of doing formal proofs in web ...
user10869858's user avatar
3 votes
1 answer
200 views

In JavaScript I want to create a log function: function log(string) { console.log(string) } Obviously this causes side effects; it prints to the screen. And I have no control over its ...
user10869858's user avatar
5 votes
1 answer
432 views

I have developed an application which I intend to sell. I set up a website with information and download links, advertising, payments, everything is ready to go - except the digital signature. I want ...
Justin8051's user avatar
0 votes
1 answer
125 views

I feel like I've heard the phrase "Automated Test Coverage" but not really sure what it means. I am wondering if there is a way to do some sort of program analysis that will tell you which parts of ...
Lance Pollard's user avatar
1 vote
0 answers
62 views

So with Model Checking you have a specification and the model checker automatically goes through your program's states and checks if it matches the specification. What I don't understand is where ...
Lance Pollard's user avatar
0 votes
1 answer
521 views

I am interested to see how a for loop / while loop would be implemented as an automaton. I am having difficulty imagining how that would work. Say the while-loop did this: var i = 0 while (i < 10) ...
Lance Pollard's user avatar
1 vote
4 answers
907 views

Say I have the following 2 JavaScript functions for demonstration purposes: function colorize(integer) { if (integer === 1) return 'red' if (integer === 2) return 'blue' if (integer === 3) ...
Lance Pollard's user avatar
3 votes
1 answer
209 views

In order to better understand proofs, I am wondering if the following example will help clarify. Given the following JavaScript function: function log(a) { console.log(a) } My questions are: If it ...
Lance Pollard's user avatar
0 votes
2 answers
323 views

After writing some code, I have a habit of scanning it all over once or twice in order to look for any bugs. This is sometimes a painstaking and tedious process, and it takes up time. After reviewing ...
Inertial Ignorance's user avatar
1 vote
1 answer
330 views

For my software engineering project I will be creating software to automate tasks. In my project management module I have been asked to describe and evaluate how I can met all the specific goals for ...
Peter Smith's user avatar
4 votes
3 answers
456 views

I'm working as a programmer in a load cell manufacturing company. We develop our own software for load cell manufacturing and testing purposes. Quality Assurance Department of our company has ...
Sherantha's user avatar
  • 203
-1 votes
1 answer
318 views

I have no idea where to start in all honesty. If I make a phone app, for example, how would I go about only allowing people with a university (college) email address to sign up? Would it be as simple ...
Josh's user avatar
  • 101
5 votes
1 answer
1k views

We are developing a website for students on which they first have to fulfill specific tasks in order to use our service. The problem is, that those tasks are on another website, which has nothing to ...
D_Burg's user avatar
  • 51
3 votes
1 answer
122 views

Imagine that you have an object code file from an untrusted source. You want to run this code to know the result of its computation, and you want the code to perform fast, so setting up a whole ...
Craig's user avatar
  • 31
7 votes
3 answers
291 views

Since it is convenient for the developer, the same paradigm are often used for implementations and specifications, e.g. for testing (e.g. Java for the implementation and unit tests, Scala for the ...
DaveFar's user avatar
  • 1,466
2 votes
2 answers
5k views

Virtually any book dealing with software testing mentions that user acceptance testing (UAT) is an ultimate validation activity, often quoting Boehms informal definition: "Validation: Are building the ...
user144171's user avatar
-2 votes
1 answer
169 views

Could no amount of formal analysis, type/rule checking prevent it's exploitation? How about a fully verified kernel such as SEL4 ?
viv's user avatar
  • 97
6 votes
1 answer
2k views

Implementing remember me with Stripe, while not using their Checkout (not supported on PhoneGap), seems to be fine using the path: First time: Request token on the client side using card info. Create ...
Matt's user avatar
  • 293
2 votes
1 answer
462 views

I'm working on a payment processing website that will function like PayPal does on many e-commerce websites. The idea is for the customer to fill their shopping cart and click checkout, then be ...
xr280xr's user avatar
  • 189
4 votes
2 answers
11k views

This is my first project related to SMS verification. How to implement SMS verification in online ordering web application? For example:- when we try to reset the password in amazon's website, it ...
Trying Tobemyself Rahul's user avatar
3 votes
2 answers
113 views

I'm on my first real software project following the whole SDLC and am a bit confused. We have a requirement that states something like "The battery will be monitored each second" which needs to be ...
alexb's user avatar
  • 153
1 vote
1 answer
116 views

Background: I have a updator feature in my program which will downloads updates to a directory specified be the user. Then user can install these updates whenever he/she wants by just opening them. ...
user avatar
1 vote
1 answer
138 views

I am developing an Android application for my final year project which allows the holder of a mobile device to receive a text notification containing potentially sensitive information from a server. ...
TomSelleck's user avatar
6 votes
1 answer
372 views

I'm in a new position where I need to process a flat files on a regular basis. The last time I did this was 5 or 6 years ago but as part of the file layout I received control totals. It gave me ...
CTKeane's user avatar
  • 163
2 votes
4 answers
2k views

Possible Duplicate: Verification of requirements question Having asked but deleted the question as it was a bit misunderstood. If Quality Control is the actual testing, what are the commonest true ...
MasloIed's user avatar
  • 102
5 votes
3 answers
3k views

ISTQB, Wikipedia or other sources classify verification acitivities (reviews etc.) as a static testing, yet other do not. If we can say that peer reviews and inspections are actually a kind of a ...
John V's user avatar
  • 4,946
0 votes
1 answer
872 views

I have received comments from the supervisor reviewing my thesis. He asked two questions I cannot answer right now: If ISO 12207 says under "Integration verification" that it "checks that components ...
John V's user avatar
  • 4,946
2 votes
3 answers
2k views

Preparing myself also to ISTQB certification, I found they call static analysis actually as a static testing, while some engineering book distinct between static analysis and testing, which is the ...
John V's user avatar
  • 4,946
2 votes
1 answer
1k views

In several articles and books I learnt that "V-model introduced QA into SW development". I would like to understand the point of such statement, as from my understanding, V model activities (...
John V's user avatar
  • 4,946
2 votes
1 answer
208 views

Preparing my thesis, I found another interesting discrepancy. While some books say verification it terms of static analysis of work products is quality control (looking for defects), other say it is ...
John V's user avatar
  • 4,946
3 votes
2 answers
1k views

Hopefully my last thread about V&V as I found the B.Boehm is text which I just do not understand well (likely my technical English is not that good). http://csse.usc.edu/csse/TECHRPTS/1979/...
John V's user avatar
  • 4,946
2 votes
4 answers
36k views

I have been following verification and validation questions here with my colleagues, yet we are unable to see the slight differences, probably caused by language barrier in technical English. An ...
John V's user avatar
  • 4,946
5 votes
3 answers
10k views

I have asked before and created a lot of controversy so I tried to collect some data and ask similar question again. E.g. V&V where all testing is only validation: http://www.buzzle.com/editorials/...
John V's user avatar
  • 4,946
8 votes
9 answers
4k views

Having read many books, there is a basic contradiction: Some say, "the goal of testing is to find bugs" while other say "the goal of the testing is to equalize the quality of the product", meaning ...
John V's user avatar
  • 4,946
9 votes
7 answers
4k views

Based on many sources I do not believe the simple definition that aim of testing is to find as many bugs as possible - we test to ensure that it works or that it does not. E.g. followint are goals of ...
John V's user avatar
  • 4,946
2 votes
5 answers
508 views

Doing a lot of reading about V&V, I would need to clarify the following. A lot of definitions (less formal ones found in books) define verification like that: Verification: The software should ...
John V's user avatar
  • 4,946
3 votes
2 answers
964 views

Yesterday my question How come verification does not include actual testing? created a lot of controversy, yet did not reveal the answer for related and very important question: does black box ...
John V's user avatar
  • 4,946
8 votes
2 answers
1k views

Having read a lot about this topic --- such as on this Software Testing Fundamentals site on verification and validation and Software Testing and Quality Assurance: Theory and Practice by Naik and ...
John V's user avatar
  • 4,946
1 vote
2 answers
231 views

I'm working on my CMS (in PHP platform) for a long time now. The main program is done and I'm currently developing the Installer part. Installation itself will be fairly simple: Upload all files ...
Kalle H. Väravas's user avatar
7 votes
1 answer
2k views

I was reading about software inspection in Software Engineering by Ian Summerville and I came across the term Software inspection and I started reading about it on Wikipedia. I am unable to understand ...
user avatar
2 votes
1 answer
185 views

This is more of a usability issue I'd say, looking of suggestions on it. I have a system that depends on the data entered by the users to be correct, as in the address exists, the name is correct, ...
8vius's user avatar
  • 123
6 votes
3 answers
2k views

So we're pretty good at eliciting requirements from our end customers, business division and sales/marketing. We plan projects to add/enhance features to meet those requests and prioritize tasks to ...
JBRWilkinson's user avatar
  • 6,769
3 votes
1 answer
257 views

I don't understand why people like to say "Images had to be distorted otherwise they would be easily cracked". I'm talking about those verification images that we had to type to identify that we are ...
Pacerier's user avatar
  • 5,063