English 中文(简体)
TFSBuild.Proj and Manual SQL Server Work Help?
原标题:

Using the VS 2008 GDR update, I have created a database project. I have created a SQL Server deployment package. I have created a database unit test.

Using some wizards, the stuff got into my tfsbuild.proj file so near the end of the automated build process a database is created.

I lack a little control of the whole process, I now see. What I would like to do is manually deploy the DB, run 3 custom scripts against the DB, and then manually start the DB unit test. I have other non-DB unit tests that already run. I do not want to use VSMDI or ordered unit test stuff because in out multi-developer environment it gets messy.

Help!

最佳回答

Perhaps I m misreading or missing some details, but it seems to me that the problem is branch management, not automated testing. Most orgs would absolutely love to get to where you are, full automated build and DB unit test.

If it gets messy in a multi-development environment it may indicate developers are checking straight into a branch that runs automated tests. Ideally you should only run BVTs on the important branches and let developers check in into private branches. Private branches are manually tested, then reverse integrated when appropriate (feature complete, stable milestone etc). The automated build and test process picks up the reverse integration check in and drops a new build, running the BVTs and all that. This way you isolated the contiguous integration and BVT process from the churn or constant check in of incomplete features.

问题回答

暂无回答




相关问题
run unit tests and coverage in certain python structure

I have some funny noob problem. I try to run unit tests from commandline: H:PROpyEstimator>python src estpython est_power_estimator.py Traceback (most recent call last): File "src est...

How to unit-test an enterprise symfony project?

I´m working on a huge project at my work. We have about 200 database tables, accordingly a huge number of Models, Actions and so on. How should I begin to write tests for this? My biggest problem ...

Code Coverage Tools & Visual Studio 2008 Pro

Just wondering what people are using for code coverage tools when using MS Visual Studio 2008 Pro. We are using the built-in MS test project and unit testing tool (the one that come pre-installed ...

Unit testing. File structure

I have a C++ legacy codebase with 10-15 applications, all sharing several components. While setting up unittests for both shared components and for applications themselves, I was wondering if there ...

Unit Testing .NET 3.5 projects using MStest in VS2010

There s a bug/feature in Visual Studio 2010 where you can t create a unit test project with the 2.0 CLR. https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=483891&wa=...

Unit Test for Exceptions Message

Is there a simple (Attribute-driven) way to have the following test fail on the message of the exception. [TestMethod()] [ExpectedException(typeof(ArgumentException))] public void ExceptionTestTest() ...

热门标签