Test Driven Development involves writing a failing automated test to specify what is to be built. The test is then made to pass by writing code which satisfies the tested condition. Finally, the code is refactored.
0
votes
1answer
47 views
Why is run() method called twice for running the test case?
Consider the following Python code from Kent Beck's book Test Driven Development Chapter 18 where he is building a framework for unit testing.
class TestCaseTest(TestCase):
def testRunning(self):
...
0
votes
1answer
147 views
ASP.NET MVC best place to put constants (from TDD perspective)
Controller that creates user profile is using a profile view model part of which is a default logo (PNG) what will be presented and used, should user to choose not to upload his own.
I created public ...
0
votes
1answer
29 views
How to TDD with .Net Data Services and Service Operations
My current solution is to create a class that has my service/data business logic, test that with a local db (mdf) and then wrap that class with identical functions from the data service class.
public ...
0
votes
1answer
71 views
With Jasmine-jQuery I tried to change fixture HTML but it doesn't work
I am newbie of Jasmine-jQuery. I tried to use fixture HTML but test doesn't pass.
fixture.html:
<html>
<body>
<p id="0">
</p>
</body>
</html>
...
1
vote
1answer
105 views
TDD for plupload with Django/Splinter
I'm trying to set up tests for a upload using the plupload[1] queue widget.
I'm using Splinter[2] for in-browser test, but I couldn't find a way to make it happen. Splinter has some methods to attach ...
-2
votes
1answer
57 views
TDD Approach for the following
How many tests could you write for the enum class below. I am looking for the following O/P.
given the following command
java fileName HORIZON_BOX, HORIZON_BOX_WITH_CC,HORIZON_BOX_WITH_CC
1 ...
0
votes
2answers
48 views
webmock and crack 0.3.2 issue
I installed the webmock gem but my rspec tests wouldn't work anymore but instead this error:
(I use guard for autotesting)
...
1
vote
1answer
89 views
Calling trigger() doesn't always fire when called from QUnit
Although I've used QUnit in the past, it's been a year since I really used it, so I am hoping this is something trivial!
I have a bunch of QUnit tests that are working really well, apart from one ...
2
votes
1answer
294 views
AngularJS + Jasmine: Comparing objects
I'm just starting out writing tests for my AngularJS app and am doing so in Jasmine.
Here are the relevant code snippets
ClientController:
'use strict';
...
0
votes
1answer
71 views
unit testing complex model with nested validation
I'm using fluentvalidation to do model validation. I have a class with a several nested classes or collections of classes, each with their own IValidator. Initially I was doing something like this ...
-1
votes
1answer
58 views
TDD: how to verify method calls made from a list of objects in Java? [closed]
I have a class FileGenerator, and I'm writing a test for the generateFile() method that should do the following:
1) it should call the static method getBlockImpl(FileTypeEnum) on BlockAbstractFactory
...
1
vote
2answers
113 views
Javascript Module pattern - how to reveal all methods?
I have module pattern done like this:
var A = (function(x) {
var methodA = function() { ... }
var methodB = function() { ... }
var methodC = function() { ... }
...
...
return {
...
0
votes
1answer
133 views
failing test not showing in jasmine-node
I have the following basic test for a web service:
var request = require('http'),
url = 'http://localhost:1337/';
describe('webservice', function() {
it('should respond to /ping', ...
0
votes
2answers
112 views
Does TDD require Unit Tests? [closed]
Does Test Driven Development requires Unit Tests? I frequently find opinions that there is no TDD without Unit Test. I'm unable to confirm it with respected sources like Wiki or books I have access ...
3
votes
2answers
101 views
Class that is loosely coupled from its properties of Stream type in TDD
I want to write a class that uses properties of stream type via TDD. The class will open/write file from/to file system. like below:
public class Csv
{
private TextReader ...
0
votes
6answers
121 views
Should I use TDD and BDD if my project is changing fast? [closed]
I have my own little project I am creating using RoR, I plan it to have small-medium load.
With no doubt I started with BDD and TDD (Cucumber and RSpec to be exact, but I am also experienced with ...
3
votes
2answers
263 views
TDD: how to mock static method in Java?
Please bare with me, as I am new to the TDD world.
I have a class FileGenerator, and I'm writing a test for the generateFile() method that should do the following:
1) it should call the static ...
0
votes
1answer
50 views
When maintaining a test suite, should all 'errors' eventually become 'failures'?
I'm a user of python unittest, but this crosses all languages.
Senario: I have uncovered a defect in 'functionBeingTested'.
The defect is that on valid input the code will crash (throw an exception)
...
2
votes
2answers
140 views
Unit testing a compiler
What is considered the best approach to unit test a complex unit such as a compiler?
I've written a few compilers and interpreters over the years, and I do find this kind of code quite hard to test ...
0
votes
2answers
72 views
How to run junit 3 with non default constructor
I have a code base where they define junit test cases as :
public class MyTest extends BaseTestCase
{
public MyTest( String name )
{
super( name );
}
public void testSome() ...
0
votes
1answer
46 views
Rspec — How to test method by calling it and checking for change in object
I am learning how to write tests so I'm writing one for a small method that I wrote. I want to call this method, update_user_region_id, and I should be expecting a change in the user object.
def ...
3
votes
3answers
107 views
TDD - Why does this Assert.AreSame pass?
I have a test method...
[TestMethod]
public void MainViewModel_PropertiesReflectDataEntityProperties()
{
// Arrange
var facilityDataEntity = ...
0
votes
2answers
89 views
Test driven development on iOS for network connections
Struggling to find a good TDD process on iOS for network connection tests.
At the moment I am manually testing the functionality by manually switching off / on my Mac network connection.
Any ...
2
votes
5answers
137 views
Breaking a local dependency to unit test a void method
I am practicing with mockito, but I am a bit stuck on how to test a method that depends on a call to method in a local object.
See the following example:
public class Worker {
public ...
0
votes
1answer
217 views
Mockito & Junit null pointer exception: name must not be null
I have been trying to run the following test using mockito and junit and I keep on getting "java.lang.NullPointerException: name must not be null"
Can anyone tell me why this is happening?
On ...
0
votes
2answers
92 views
Can't figure out what's causing my tests to fail
I'm new to rails and I built an app without doing TDD but am now going back and trying to pass all the tests. I've passed most of them but there are a few left relating to the same issue that I can't ...
2
votes
2answers
72 views
Python unittesting: run tests in another module
I want to have the files of my application under the folder /Files, whereas the test units in /UnitTests, so that I have clearly separated app and test.
To be able to use the same module routes as ...
1
vote
2answers
69 views
What is the difference between a Seam and a Mock?
Its being a few months since I am working with java legacy code, this are some of the things I am dealing with:
0% test coverage.
Huge functions in occasions I even saw some with more than 300 ...
1
vote
1answer
30 views
How can I execute tests automatically
In eclipse, I create the test and always have to run it manually. Can eclipse run the tests when I save my class? This will save so much time.
0
votes
1answer
83 views
FactoryGirl set attribute with association
I have a Note object attached to a Course, I want to randomly set the @note.number to rand(@note.course.sections) in FactoryGirl. I tried:
factory :note do
association :course
number { ...
1
vote
1answer
144 views
Can anybody point me in the right direction with a BDD ATDD and TDD kata?
So ive been given a Kata to work on over the weekend. And before starting it I really just wanted to gather some thoughts. Okay but yes you already know this is a test but ok, IM NOT LOOKING FOR THE ...
0
votes
1answer
42 views
Mockery/Etsy PHPExtensions does not fail test if required methods are not called
I have the below code, which I would expect to fail when run as the class DoesNothing doesn't use the mock class or call any of the required methods on it.
<?php
class DoesNothing
{
}
class ...
10
votes
3answers
299 views
Unit Test vs Integration Test in Web Development [closed]
I would like to ask about using Unit Testing in Web Development. The idea of Unit Testing is great but does it really bring value in the context of web application? Second part of my question is about ...
0
votes
1answer
74 views
PHPUnit - Mocking a database function
Here's a highly simplified version of the class I'm trying to test:
class SimpleORM {
private $table, $pdo;
public function __construct(PDO $pdo, $table) {
$this->pdo = $pdo;
...
1
vote
1answer
68 views
How do I use TDD to create a database representation of existing objects?
I have used TDD to develop a set of classes in Python. These objects contain data fields, functions and links to each other. Everything functionally works like I want.
Eventually all of this should ...
4
votes
1answer
96 views
iOS TDD: Testing a method that uses UIVIew animateWithDuration:animations:completion:
I have a button press that fires off an animation, and upon completion of the animation, changes the text of a label. I'd like to write a test verifies that when the button gets pressed, eventually ...
2
votes
2answers
98 views
TDD - Using properties to auto-generate code
I am practicing TDD using MsTest together with RhinoMocks, and I am trying to be as lazy as humanly possible, i.e. make use of VS2012 auto-generation wherever I can. But it doesn't always feel right ...
1
vote
1answer
133 views
How to set expectations on parameters to mocked methods in Kiwi
Using OCMockito and OCHamcrest, I can set up expectations on the arguments to mocked methods, thusly:
[verify(aMockObject) doSomething:allOf(is(instanceOf([NSArray class])), hasCountOf(3U), nil)];
...
0
votes
1answer
38 views
How To write TestCase nunit test for keyPairValue
I am looking for a way to pass keyValuePair into my test with TestCase
[TestCase<KeyValuePair<int,string>>(1,"XX")]
public void someTest(KeyValuePair<int,string> ...
1
vote
1answer
43 views
Is it possible to limit the output on a maven build?
The team I am on has maven-ized our project AND taken on TDD as a way of life, but due to the sheer size of the project and the number of our tests, our build is taking roughly 15-20 minutes. It's ...
1
vote
2answers
60 views
How to test internal functions, which are needed for internal purposes, using Jasmine
(function(window,document){
var _trimString = function( string ){
var trimString;
trimString = string.replace(/^\s+|\s+$/g,'');
return trimString
};
var displayCorrectText = ...
0
votes
2answers
57 views
Repeating test cases
My question is if it is ok to repeat the same test assertion or case for every scenario?
The scenario here is if I have a function, then this function can be simulated using different scenarios ...
2
votes
1answer
95 views
Composer suggested approach for internal packages
Some background first
Our company, a small startup with only four developers, is starting the refactoring of our products into reusable modules to simplify the development process, increase ...
0
votes
0answers
52 views
Any good resource for doing End to End Testing in .Net?
I have been trying to adopt TDD and more specifically BDD. I know all the fancy terms, I know what should be done but I don't have any guidance/person to assist me. Its like learning to drive without ...
0
votes
1answer
124 views
Capybara testing javascript failure to refresh .count
Using Capybara testing javascript alert in rspec. Why
expect{
click_link "Cancel my account"
page.driver.browser.switch_to.alert.accept
}.to change(User, :count).by(-1)
fails. Yet
puts ...
3
votes
2answers
54 views
Eclipse : Running tests when you're thinking
I read this Kent Benk tweet :
"don't wait. run the tests while you're thinking."
I am looking for some kind of plugin that allows me too do this in the eclipse IDE. For exemple, if i am away from ...
0
votes
2answers
36 views
Program written in generated code based on unit tests
As I was doing test driven development I pondered whether a hypothetical program could be completely developed by generated code based on tests. i.e. is there an ability to have a generator that ...
0
votes
1answer
254 views
Missing template relationships/create, application/create with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :coffee]}
I was having problem with railstutorial.org on chapter 11 with Rspec. The test was not pass.
RS-MBP:sample_app rsoutar$ bundle exec rspec spec/
No DRb server is running. Running in local process ...
3
votes
2answers
158 views
Should we unit test console outputs?
I am working with some legacy code that has some System.out.print commands in itself.
My eCobertura plugin shows this lines red, so I want to unit test them.
Here in stackoverflow I found a way to ...
6
votes
3answers
115 views
Jasmine shared specs scoping issues with coffeescript
I'm attempting to DRY up some jasmine tests by extracting out shared examples.
@sharedExamplesForThing = (thing) ->
beforeEach ->
@thingy = new thing
it "is neat", ->
...







