|
I am using Hudson as a CI server to build a few different .Net 3.5 projects. The actual build stuff works great.
However, I run MbUnit v2 tests using Gallio.Echo as part of the build, and while the tests seem to run fine, Hudson claims that there were...
Started by Rune Jacobsen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://code.google.com/p/mb-unit/issues/detail?id=399.
I propose a test file to resolve this problem....
|
|
Question: Are there any tests at all through any of the curriculum? Thank you for your help!
Angie
MFW is not a test-based curriculum. There are a couple little things such as ECC's pre- & post-test on geography. CtG has a weekly test on the Greek roots...
Started by Julie in MN on
, 22 posts
by 16 people.
Answer Snippets (Read the full thread at mfwbooks):
It is not "test this random list" But again, you'll have tests in the book itself? Is there a placement ....
As Julie pointed out, there are some tests with phonics.
Angie,
As for testing, I am not a test sort of person.
|
|
Am I a bad person if I use use Test::More qw(no_plan) ?
The Test::More POD says
Before anything else, you need a testing plan. This basically declares how many tests your script is going to run to protect against premature failure...
use Test::More tests...
Started by Eric Johnson on
, 11 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
I want to know if....
If you don't run tests under it.
Stating the number tests expected gives you the ability to see if there is a bug in the test script that is preventing a test from executing (or executing too many times).
|
Ask your Facebook Friends
|
Should I help on the test?
Quote: : Today I was giving my 2nd grader the placement test level 1a and the test was confusing to her.
Should I help her figure out what she is suppose to do on each problem (without giving her the answer) or do I let her ...
Started by 4Truth on
, 23 posts
by 18 people.
Answer Snippets (Read the full thread at mfwbooks):
A cue from Spelling Power's placement tests and stop the test when it is obvious that it is beyondHi Lynn,
I have to add that I do *not* like the Singapore placement tests:27 pm
And as "personal tutors," we can often assess our kids....
|
|
Is there a way to get the tests inside of a TestCase to run in a certain order? For example, I want to seperate the lifecycle of an object from creation to use to destruction but need to make sure that the object is set up first before I run the other...
Started by dragonmantank on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Each test should be totally independent, so they can ....
Usually each test must not depend on any other tests with your tests if they need to run in a certain order.
Maybe there is a design problem in your tests.
|
|
I have finally got in my mind what worried me about Dependency Injection and similar techniques that should make unit tests easier. Let's take this example:
public interface IRepository { void Item Find(); a lot of other methods here; } [Test] public ...
Started by queen3 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Then, other tests this....
Test enough dedicated tests to trust the resource is working.
Edited : included in this coupling is the test technology if appropriate).
The coupling between your tests and your implementation.
|
|
Hi,
I've been working on an ASP.NET MVC project for about 8 months now. For the most part I've been using TDD, some aspects were covered by unit tests only after I had written the actual code. In total the project pretty has good test coverage.
I'm quite...
Started by Adrian Grigore on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
When I mean to maintainance because....
What you should do is to test public APIs.
So, we are now looking into writing our tests in a more specification/BDD style, which your unit tests too close to your classes.
In every test.
|
|
TDD is something that seems to be on everybody's lips these days, and I have tried some on my own but I don't think I'm getting the idea. I am getting a grip on how to write a unit test, but I don't understand exactly what my unit tests should test.
If...
Started by Tomas Lycken on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
And....
For adding a record (if your tests are hooked up to a test database) you can simply query for the last the test.
tests for your tests to makes sure they work properly! Test every bit of code that you write.
|
|
We have a junior programmer that simply doesn't write enough tests.
I have to nag him every two hours, "have you written tests?"
We've tried:
Showing that the design becomes simpler Showing it prevents defects Making it an ego thing saying only bad programmers...
Started by abyx on
, 25 posts
by 24 people.
Answer Snippets (Read the full thread at stackoverflow):
If you show him in a very formal setting that not doing tests is adversely affecting his performance things like "yeah, I ....
To carefully put together code, then put together tests, then test their code, THEN check the whole thing.
|
|
I'd like to know how much took to run the 10 most time consuming tests.. like I can do with rspec, any suggestion?
Started by ClaudioA on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It with
RAILS_ENV='test' rake gems:install
From then on, you'll get a nice sorted list when you run your testsMaybe run your unit tests under the ruby profiler by executing the code with ruby -rprofile instead MiniTest gem install minitest....
|