Visual Studio :: 'File Not Found' In Unit Tests?

Oct 19, 2010

I have a unit test that reads from an .xml file and it works fine on my local machine.However, in TFS when I create a new build it gives the following exception:

Failed GetArticleByIdTestOptimal Test method Test.ArticleSystemTest.GetArticleByIdTestOptimal threw exception: System.Xml.XmlException: ImportFromFile filePath=[.Articles1to5.xml]. ---> System.IO.FileNotFoundException: Could not find file 'c:uildareaTestResults fservice
2010-10-19 11_52_19_Any CPU_ReleaseOutArticles1to5.xml'..

Is there some reason why a unit test could pass locally but not in TFS? I've verified that the file is on the build server.

View 1 Replies


Similar Messages:

JQuery :: Integrate Unit Tests With Visual Studio?

Mar 17, 2011

I recently came accross the following article on Stephen Walther's website

[URL]

Basically, it provides some excellent guidance on how to integrate your Javascript tests into Visual Studio. I followed the steps in the article and successfully managed to test Javascript methods using Visual Studio tests.

I am unable however to unit test JQuery methods (I get errors such as "window" undefined). I was wondering if anyone has successfully managed to test jQuery methods on the server using the above link?

View 2 Replies

C# - Is Possible To Run Some Unit Tests As Smoke Tests

Oct 21, 2010

In my project we use UnitTests (MsTest). We run them manually and in the build script.But for some environments where we deploy manually.We are in the need of having some smoke tests. At the moment I made this smoke tests "manually" (Login, create an user, create a licence, create a product, etc). I know I can run unit tests from command line or from visual studio but...Do you know if is possible to run these mstests (or probably a small subset) from an .aspx page and show the results?EDITED: wondering if mstests or something is able to run the tests and have something visual to show in an .aspx page similar to a list of tests passed and tests failed...I am thinking on running only a small subset of tests (5-6)

View 1 Replies

Visual Studio :: Unit Test Visual Studio 2008 Professional Edition?

Mar 1, 2010

I have VS 2008 Professional Edition.....I want to test a function like this:

public int getIdByName(string name)
{
var item=from x in DATAB
where x.name=name
select x.id;
.
.
return idValue;
}

now I test end I have:

[TestMethod()]
public getIdByNameTest()
{
string name="Bob"
int expected = 1;
int actual;
actual = ClassGET.getIdByName(name);
Assert.AreEqual(expected, actual);
Assert.Inconclusive("Verify the correctness of this test method.");
}

The error in "test run" is:

Failed ......[Class]....... Test method threw exception: System.ArgumentException: The specified named connection is either not found in the configuration that is not for use with the EntityClient provider or thought is invalid

View 7 Replies

Visual Studio :: Cannot Run More Than 2 Database Integration Tests

Nov 24, 2010

I have written some database integration tests in the format of MS unit test. If I run each test, it runs fine. If I run 2 integration tests, it runs fine. However, if I runs 3 or more test at the same time, one test will show "In Progress", and other shows "Pending", basically, it does not make any progress at all, stays there forever. I turned on SQL Server Profiler, it does not show the test hit the database at all.

Here are some examples of my method:

[Code]....

Here are examples above method integration tests:

[Code]....

View 1 Replies

Visual Studio :: Compiler Executable File Csc.exe Cannot Be Found?

Feb 9, 2011

I formatted my system which has Windows XP serive pack 2 and after that Installed the VisualStuido 2008 setup.But,when I run any website then it says

Compiler executable file csc.exe cannot be found. Description: An unhandled exception occurred during the execution of the current web request.

I searched but could not find any suitable soution for it.Before formatting .Net was working quite fine.

It only work if I change version value to 2.0 from version=3.5 in webconfig file

<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/>

Kindly reply I wasted whole day for it but could not get the way for it.

View 1 Replies

Writing Useful Unit Tests?

Jul 7, 2010

I have a simple page with a Grid that I'm binding a collection of objects to. I also have some simple functionality on the grid to edit and save rows. I would like to write unit tests for this page, but it's not really making sense to me.For example:

Private Sub LoadGrid()
'Populate Collection
grid.datasource = MyCollection
grid.databind()
end sub

I guess a Sub really doesn't need a unit test, but what if this were a function that returned true when the grid had been loaded. How do you write a unit test for this? What other test should be done on a simple web page like this?

View 2 Replies

MVC :: Unit Tests For Action Which Uses RedirectToAction?

Oct 13, 2010

I have Action method in a controller which uses RedirectToAction(actionName, routeValues[])I want to write the unit test for action method to check the following - 1. action name2. ViewData after executing the RedirectToAction.

View 1 Replies

C# - How To Fake HttpContext For Unit Tests

Aug 15, 2010

I need to fake HttpContext.Current.Application table to access it from my unit tests.I need to store my data somewhere. I thought that I can just pass instance of NameValueCollectionBase but as I descover this base type has no indexer so it's too complicated to use. So what about faking this part of HttpContext? Is it possible? How can I make it? Will be NUnit.

View 2 Replies

How To Apply Unit Tests In .NET Webforms

Mar 31, 2010

I'm developing a website in asp.net webforms with 3 layers; UI, BLL and DAL.The website is already developed, but i like have more control about the unit tests of each form Pass specific values at specific inputs for i see, if application survives or not.

I already study about NUnit but in webforms in UI layer how can apply these tests?What i wnat is get some way to test UI (validations) without have to access to the BLL as i was an user.

I'm trying to add the Unit tests to my app but i not sure how to do it!

View 2 Replies

MVC :: Enabling .NET MVC2 Unit Tests In VWD?

Mar 16, 2010

As stated in http://forums.asp.net/t/1535916.aspx the unit tests are missing from the ASP.NET MVC 2 RTM source code, but are available on CodePlex at

http://aspnet.codeplex.com/releases/view/41742).

After installing ASP.NET MVC2 RTM on Visual Web Developer 2008 Express, apparently unit tests are not enabled for VWD - when I create a new MVC2 project I don't get the "Create Unit Test Project" dialog box where I can say"Yes, create a unit test project".(I thought I was presented with that dialog box in earlier versions of either MVC2 RC or MVC1, but maybe not...)

Given the source code on codeplex, is it possible to use that to enable unit tests for MVC2 for VWD Express? If so, are the steps one have to take detailed somewhere?

View 5 Replies

How To Make HttpContext Available To Be Used By My Unit Tests

Aug 13, 2010

I want to write a unit test which tests the function of a class called UploadedFile. The problem I face is this class' static constructor uses HttpContext.Current property and because I am running my unit test from a class library I do not have an HttpContext at the testing time.

Look at my static constructor:

static UploadedFile()
{
if (HttpContext.Current == null)[code]....

What should I do in my testing environment so that HttpContext.Current won't be null and I can successfully set this:

HttpServerUtility server = HttpContext.Current.Server;

View 2 Replies

C# - Stubbing .NET Page.Form For Unit Tests?

Feb 22, 2011

Fo unit testing ASP.NET controls I need a stubbed Page.

I can create an ASP.NET Page object in my unit tests by subclassing System.Web.UI.Page.However, I cannot find a way to set Page.Form. Adding a form with attribute (runat,server)does not work. Overloading the form in my Subclass does not give the required functionality.

Context:I try to unit test some homemade ASP.NET controls. These control require Page and Page.Form not to be null.

View 3 Replies

Continuous Integration For .Net And Javascript With Unit Tests?

May 4, 2010

I need a Continuous integration tool that will support both .Net Unit tests and Javascript unit tests and perform the builds.It looks like my main options are CruiseControl.NET using JUnit and NUnit or Team City and JS Test Driver.

Are there any other options and which ones have you used or had good or bad experiences with.

View 1 Replies

Visual Studio :: Unit Test For VWD2010 / MVC 2 On Windows 7?

Jun 6, 2010

I'd like to tryout ASP.NET MVC2, im using VWD2010 on Windows 7. I can't seem to be able to get the unit test dialog to pop up. I googled it and all I find is nUnit templates for VWD2008.

Anyone running into this issue with same setup as mine?

View 3 Replies

Visual Studio :: What Is Unit Testing In VS 2008 And How To Implement It

Feb 16, 2010

I am new to .NET

what is Unit Testing in VS 2008 and how to implement it.

View 3 Replies

Web Forms :: Unit Testing In Visual Studio 2008?

Mar 9, 2010

This is sudhir iam new in testing in vusual studio 2008 . how to do the unit testing in visual studio 2008

View 1 Replies

Visual Studio :: Unit Testing Tool For Web Application?

Aug 26, 2010

I am lookinf for a Unit testing Tool for asp.net web application. i intended to use visual studio 2008 web test. Please tell me where can i get nice tutorials to start up on this tool. and also suggest me is any other web testing tools out there.

View 1 Replies

Visual Studio :: Unit Test Assemblies Order?

Feb 18, 2010

I have one assembly with unit tests to my each library.

Each assembly prepares clean test data by restoring database (SQL Server):

[AssemblyInitialize()]
public static void AssemblyInit(TestContext context)
{
TestInitialize();
DatabaseCreator.CreateTestDatabase("crm");
DatabaseCreator.CreateTestDatabase("workflow");
}

How to force tests from one test library run in one 'packet' - I mean - all tests from A.dll, then all tests from B.dll and so on?

Now, when libraries use the same database, mixing tests from various libraries causes errors - one library restores database before test method is started from other library....

The other possibility, that I'm thinking about is to not use assembly load startup method, but restore all databases only once - before first test starts - but I don't know how to do it...

View 4 Replies

Visual Studio :: Use NUnit If VS2008 Has Built In Unit Testing?

Feb 5, 2010

My que is why use NUnit if VS2008 has built in Unit Testing

In my company app they are uing NUnit and I am wondering why. Now VS2008 has built in Unit Testing so why to use NUnit?

View 1 Replies

Visual Studio :: Unit Test For Developer 2010 Express?

Nov 2, 2010

I am using ASP.NET MVC and want to have Unit Test functionality integrated within Visual Web Developer 2010 Express (or Visual Studio LightSwitch). Is it possible and if so, what is the recommended/best way to get it?

View 1 Replies

Visual Studio :: Unit Test C# Web Service With 2010 Ultimate?

Oct 25, 2010

I have webservice running, how to test those web methods using the Test features of Visual Studio 2010.

As with normal web reference i am not able to create the classes and call the webmethods inside the test class.

View 1 Replies

Visual Studio :: Unit Testing Suggestions For Methods That Are Normally Void?

Jun 9, 2010

have a test project for testing methods in the Business/Models tier of my application. For methods that do calculations or have return types this works great.What would some suggested ways to perform (any is this even necessary) testing on methods that would normally have no return type, such as a 'Delete' method?Example:

[Code]....

View 3 Replies

Visual Studio :: Add A Unit Testing Project In C# To For A Website Written In VB?

Mar 2, 2010

I want to create a unit testing project for my existing websiet which is written in VB. When I try to add a unit testing , no place I can select c#. It always create in VB. How can i add a c# unit testing project for it?

I am using visual studio professional 2008

View 2 Replies

Run A Unit Testing On A Web Page (events...etc) In Visual Studio 2008?

Aug 4, 2010

is there any tutorial about how to run a unit testing on a web page (events...etc) in visual studio 2008? is it even possible? i can find anything to start with

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved