-
Notifications
You must be signed in to change notification settings - Fork 249
Building and running tests
You can use Visual Studio 2012 and above to build the solution and run the tests.
You can build the solution with msbuild using the build/build.proj file.
Example: MSBuild.exe build/build.proj /v:m /t:test
Clean previous builds and compiles the solution.
$ MSBuild.exe build/build.proj /v:m /t:compileExecute compile target and runs the test located in the Cassandra.Tests project.
$ MSBuild.exe build/build.proj /v:m /t:unit-testTo run the unit test, you will need to have the NUNIT_PATH environment variable pointing to the bin folder of the Nunit installation path, for example: C:\Program Files (x86)\NUnit 2.6.3\bin.
As an alternative, you can set NUNIT_PATH as a project-level property, using the switch /p:
$ MSBuild.exe build/build.proj /v:m /t:unit-test "/p:NUNIT_PATH=C:\Program Files (x86)\NUnit 2.6.3\bin"Runs unit-test target and runs the tests located in the Cassandra.IntegrationTests project.
It also requires NUNIT_PATH environment variable.
Modifies the assembly info to include the build number and runs test target.
You will need to set the BUILD_NUMBER environment variable.
Example using environment variables:
$ MSBuild.exe build/build.proj /v:m /t:ciExample using command line arguments:
Example using environment variables:
$ MSBuild.exe build/build.proj /v:m /t:ci "/p:NUNIT_PATH=C:\Program Files (x86)\NUnit 2.6.3\bin" /p:BUILD_NUMBER=12345