0
votes
0answers
3 views
JSTestDriver CodeCoverage tool returns NPE
Hi all:
I'm trying to use the CodeCoverage tool provided by JsTestDriver to do code coverage for my javascripts. However I'm having trouble making the tool to work. Everytime I …
0
votes
3answers
33 views
Problems unit testing setInterval function in Javascript
Hi all:
I am having difficulties testing window.setInterval function in my Javascript file. Below is the scenario... basically I have a setInterval function in a function which I …
0
votes
1answer
40 views
How to unit test jquery document.ready function?
Hi all:
I'm having trouble unit testing $(document).ready(function() {...});. Below is the code snipet:
function myFunction()
{
$(document).ready(function()
// alert('in …
0
votes
2answers
44 views
Creating DOM structure using jQuery for unit testing
Hi all:
Suppose I have the following html:
var testString = '
<span id='id'>
<div>
<table>
<span id='anotherId' class='NODE customCon …
0
votes
0answers
7 views
NLog with VS 2008 Unit Test
I am trying log some entries in a log file (Log.Trace / Log.Debug) while my VS unit test runs. I have also copied the file NLog.config to out directory through DeploymentItem attri …
0
votes
2answers
63 views
problem with em unit
Hi,
I want to use relative size instead of fixed size. I want to use em.
My CSS is:
body{
font:10px;
}
#wrap {
font:1.2em;
}
#wrap ul li {
padding-left:2em;
}
Wha …
1
vote
2answers
35 views
Unittesting Corba in Python.
Hi there,
I am interested in your opinions on unittesting code that uses Corba to communicate with a server.
Would you mock the Corba objects? In Python that's sort of a pain in …
0
votes
1answer
21 views
Unit Testing a Windows Scheduled Task Console App
Hi all,
I am in the process of taking over a legacy system that contains a Console App project, which is run as a Scheduled Task on our production servers. It mainly produces dai …
2
votes
1answer
35 views
Using MBUnit to test values against a database
I need to test a class who's return value depends on values from a database. I could just hit the database in the unit test but those values could change. Is there a standard solut …
0
votes
1answer
39 views
How to test duplicate email addresses in .NET MVC
I have added functionality to the Accounts Controller -> Registration ActionValidateRegistation function to test for blanks in the user registration form. I now want to throw an …
1
vote
3answers
48 views
BUilding Flex project with unit testing on cruise control
Hi,
I have a flex application build with actionscript 3 on flex builder with unit testing on it using flexUnit4. I want to build this project on my cruise control and i don't kno …
0
votes
1answer
69 views
How can i CloseComm, OpenComm, WriteComm and ReadComm with the windows unit?
I have an old comm unit that uses WinTypes,WinProcs. As i understand these were merged too the Windows unit.
Are there similar functions in the Windows unit?
2
votes
5answers
86 views
Has C#/.NET builtin conversion routines for length units?
Has C#/the .NET library builtin routines or constants for converting e. g. millimetres to inches? If so, where can I find them? (I just do not want to produce duplicate code again …
0
votes
1answer
36 views
Subsonic 3 Active Record TestRepository identity column not icremented
I am Unit Testing with Subsonic 3.0.0.3. Unit tests ran as expected with record count assertions passing. However the testing framework does not auto increment identity columns.
…
0
votes
3answers
76 views
What is a unit of work in regards to database objects?
In layman's terms, what is a unit of work in regards to database objects? I'm researching how to convert database tables into C# classes and I frequently come across this term, but …
