1
vote
1answer
39 views
Getting Assert to work in Visual C++ Unit Tests?
I'm using Visual Studio 2008's built in testing framework in my Visual C++ project. I'm adding a new Test Project, then a new Unit Test. However, I can't use any of the functions p …
0
votes
4answers
35 views
Hide stderr output in unit tests
I'm writing a few unit tests of some code which uses sys.stderr.write to report errors in input. This is as it should be, but this clobbers the unit test output. Is there any way t …
0
votes
2answers
45 views
functional test for Rails plugin, assert_template broken?
I'm writing a plugin that adds a class method to ActionController::Base, so in my functional test I am creating a simple controller to test against. The example below is totally st …
1
vote
3answers
47 views
Unit testing: how to access a text file?
I'm using Visual Studio 2008 with Microsoft test tools. I need to access a text file from within the unit test.
I've already conf the file to 'build action=content' and 'copy to …
6
votes
5answers
1k views
C# “internal” access modifier when doing unit testing
I'm new in unit testing and I'm trying to figure out if I should start using more of 'internal' access modifier. I know that if we use 'internal' and set the assembly variable 'In …
4
votes
7answers
695 views
Unit Testing Framework for Oracle PL/SQL?
I've seen the question (and answer) when posed for MS SQL Server, though I don't yet know of one for Oracle and PL/SQL. Are there xUnit style testing frameworks for Oracle's PL/SQ …
6
votes
7answers
562 views
Unit testing for PL/SQL
Anyone have any experience or tools for unit testing PL/SQL. The best looking tool I've seen for this seems to be Quests Code Tester, but i'm not sure how well that would integrati …
0
votes
1answer
15 views
Testing rails routes: can’t find ActionController::Assertions::RoutingAssertions methods
I'm trying to test the routes on my rails 2.3.4 application. There are several sites that explain how to test routes, including the rails docs, but I'm getting errors following the …
6
votes
7answers
333 views
What’s a unit test? [closed]
Possible Duplicates:
What is unit testing and how do you do it?
What is unit testing?
I recognize that to 95% of you, this is a very WTF question.
I'm in high school. I …
2
votes
3answers
37 views
How to Speedup WCF “unit” tests? (Creating/closing the ServiceHost is slow…)
I am in the process of writing some test for a server that is implemented in WCF, as the messages are complex and call-backs are made to the clients I wish to include WCF in the te …
1
vote
3answers
15 views
Save object in debug and than use it as stub in tests.
My application connects to db and gets tree of categories from here. In debug regime I can see this big tree object and I just thought of ability to save this object somewhere on d …
0
votes
1answer
74 views
How do I link my executable to my test bundle when debugging test using otest?
I'm using kind of a hybrid of Chris Hanson's excellent Xcode unit testing guide.
My program is a (command-line) application (which precludes using the executable itself to run the …
10
votes
8answers
1k views
Naming Conventions for Unit Tests
What are some popular naming conventions for Unit Tests?
General
Follow the same standards for all tests.
Be clear about what each test state is.
Be specific about the expected …
1
vote
0answers
19 views
Struts Action Validation
Hey People. I have been recently validating Struts 2 actions.
In One of my action class, the save method to be precise must have two id's.
That is an assessmenttype id and a course …
6
votes
2answers
224 views
Unit Testing - How to go about it?
I want to unit test my program (in C) because I know of the benefits of doing so as well, as it shows where the problem is.
I also like to blackbox test, since it tells me if the …
