tags:

views:

105

answers:

2

There is this set of default build qualities:

  • Initial Test Passed
  • Lab Test Passed
  • Ready for Deployment
  • Ready for Initial Test
  • Rejected
  • Released
  • UAT Passed
  • Under Investigation

I'm not really sure about the meaning of each entry. I lack experience in this area (and additionally, i'm not a native speaker). Is there an explanation of these values somewhere? I'm also interested in related ressources, please feel free to add links.

+2  A: 

Those are the default build qualities provided with TFS. They probably won't mean anything to you unless your organization's release process includes steps that would correspond to those qualities.

Resources that might help:

ryan.rousseau
Oh, that's mean: MSDN shows a short description of each tag for VS2005 but not for 2008.
mafutrct
+2  A: 

These are just strings in the build system, so feel free to remove them and add new ones that mean something more useful to your team.

As Ryan says, there are some short descriptions given for the default values at the following link:

http://msdn.microsoft.com/en-us/library/ms181734(VS.80).aspx

Good luck.

Martin Woodward