You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- What about your situation is "different" from any other type of testing done on software? People typically test a specific input and verify the expected output is received. Whether the client also validates your data doesn't really matter; unless you are also the client then you can do the test as more of an integration level test. Or are you not being asked to validate your code but to validate the message itself before passing it along as part of normal processing? That sounds reasonable but then raises a slew of requirements questions with regards to what happens when the message is invalidDunk– Dunk2015-04-10 14:44:37 +00:00Commented Apr 10, 2015 at 14:44
- @Dunk No, I am not also the client. Yes, I am being asked to validate the message, not the code; the code is already covered by unit and integration tests. I have zero doubt the client will receive a message it can understand and process. Whether or not they can or will accept the data in that message is less clear. It seems like a lot of effort to go from Them: "Something is definitely wrong." to Us: "Something is probably wrong." This probably boils down to incomplete requirements/specification, but as you said, it raises a lot of questions.user2097245– user20972452015-04-11 00:20:51 +00:00Commented Apr 11, 2015 at 0:20
- @Dunk The problem I'm having with verifying the output is that their request is "give me your data about x" and our response is "here is our data on x in the format you asked for". I can verify the format, but not really the data.user2097245– user20972452015-04-11 00:25:37 +00:00Commented Apr 11, 2015 at 0:25
- It depends on your customer and your contract. If this is an informal project/customer then you may show that everything you are going to do is already being done by the client and avoid it. If you are in a more formal environment then you'll have to do the validation even if it is duplicate work. It may seem like a waste of time but it likely will save your company time and money and could prevent potential legal actions against your company because you've shown you delivered as expected and when things don't work for the client you can show your software does. Must be the customer's problem.Dunk– Dunk2015-04-13 15:00:06 +00:00Commented Apr 13, 2015 at 15:00
Add a comment |
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you