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
7 views
mockito wanted but not invoked method
I want to test my service for vehicles. The next test represents test for adding new Vehicle if Empleyee does not exists(Checking employee is for Authentication).
Here is the code for testing:
...
0
votes
0answers
24 views
unit tests simultaneously iphone ipad
I'm developing an application for iPhone and iPad on xCode 4.6.2 and I am using TDD method.
My question is how to make unit test simultaneously for iPad and iPhone ?
Currently, I have to run my test ...
0
votes
0answers
12 views
Is “Data class” really a code smell?
Fowler's book Refactoring lists "Data Class" as a code smell. Yet when unit testing a method, passing in value objects, e.g. data transfer objects, make testing much easier than trying to set up or ...
0
votes
1answer
53 views
Laravel 4 TDD Test faling
I All, I am trying really had to get in proper TDD but it is not smooth sailing.
This test keeps on failing and I can't figure out how to make it pass.
#>phpunit
PHPUnit 3.7.20 by Sebastian ...
0
votes
0answers
33 views
How to unit test if function has been called? Dependency injection?
I'm creating a simple RESTful API in PHP for practice. I'm trying to write as testable code as possible. After reading many tutorials and watching a few videos, I still feel at a loss on how to design ...
0
votes
1answer
29 views
Leveraging Mocks in BDD and TDD (Spock + Mockito)
I am using Spock and Mockito and am having a difficult time figuring out how to get value from Mocks.
I am attempting to build RESTful Services for a REST interface called UserResource that ...
0
votes
0answers
23 views
lean-and-mean CORBA mock server
We're planning to create a CORBA client on several platforms. For integration testing, it would be useful to be able to have a CORBA service to mock the 'real' thing.
I'm currently looking into what ...
0
votes
1answer
27 views
Hello world with TDD and continuous integration using Eclipse CDT + Jenkins + Maven
I am moving from Netbeans to Eclipse. I am looking for a tutorial that will show me how to use the following with Eclipse:
Maven
Jenkins
a C testing framework like c89spec
My projects are either C ...
-1
votes
0answers
34 views
MiniTest not displaying output
I'm playing around with MiniTest reporters to see if I can't get some different output, but I'm not seeing output of any kind, with or without my reporter.
Here's the output I'm seeing:
Run options:
...
0
votes
1answer
21 views
Is it possible to create custom functions when use sqlite in cakephp
I need to create a custom function silimar with mysql. But this must be in sqlite to run tdd.
I have not found how to do this in documentation or in code structure.
Reference: ...
0
votes
1answer
15 views
jUnit Unexpected method call DAO Easymock check User
I have a problem with testing check user method from DAO.
Here is the code:
private UserService service;
private UserDao mockDAO;
@Before
public void setUp(){
service=new UserService();
...
0
votes
2answers
35 views
Rails MiniTest 'post' method not found
I'm receiving the following error when I try to run my request specs:
POST :: /users/:id/authentications request::successful request#test_0001_Adds an authentication record to a user:
NoMethodError: ...
0
votes
0answers
25 views
rspec controller testing - has_many :through :source - RuntimeError: Called id for nil
Please help me. I try to run the following controller test but I cannot figure out why it returns following error:
Failure/Error: get :index, user_id: controller.current_user.id
RuntimeError:
...
0
votes
2answers
29 views
How to test the environment in TDD?
As I continue to learn and apply TDD I reach some points where I don't know how I could test before writing code (as I should).
It's with anything that's outside my application such as testing that:
...
0
votes
2answers
19 views
Testing a rails controller method that is designed to change data of a variable
I have the following code in the controller:
# guest to user sign up view. Method that prepares a guest to become a user by emptying it's generic
#e-mail address.
def guest_signup
if ...
0
votes
1answer
67 views
TDD best practice?
Im using a TDD approach with my latest project. Its new for me :)
I have a service which will save a CSV record to the database. It will check values for existence and add if necessary - hence the ...
0
votes
1answer
23 views
Updated to Capybara 2.1.0.rc, now having trouble with current_path in my feature specs
So it seems like I've used current_path many times in request specs. However, Capybara now requires specs to be in the features directory in order to use the Capybara DSL (page & visit)
# ...
0
votes
1answer
26 views
Rspec model test with Fabricator & let(…) format. Console shows no data in databse but there is.
I don't understand why it returns empty when I type "Video.all" first time in console after it did not pass the test, but if I specify them like "video" & "video2", and then I type "Video.all" it ...
0
votes
1answer
35 views
jUnit Unexpected method call DAO Easymock
I am newbie with mock testing.
I want to test my DAO for users. Here is my code.
private UserService service;
private UserDAO mockDAO;
@Before
public void setUp(){
service=new UserService();
...
1
vote
1answer
23 views
Testing Collections of Objects for Equality using IEquatable<T>
I have a class that I have made implement IEquatable<T> so that when I'm testing I can easily compare IEnumerable collections of those objects using a call such as:
...
1
vote
1answer
27 views
Fake android library for TDD
In order to use TDD when developing an android library which can be used in other apps, I decided I could get around the Stub! android.jar by creating copies of the classes which have higher ...
0
votes
1answer
30 views
How to unit test express route that calls helper function from dependency?
I have the following as part of my login code. I already have unit tests written for the authentication.login() so its just the response handling itself I need to test.
app.post('/login', ...
0
votes
2answers
49 views
Is writing as many tests as possible at once a good practice for TDD? [closed]
I'm a beginner with TDD; I've just read TDD by example and now I can't seem to stop writing code in a TDD fashion. I've noticed that a lot of the time I'm writing a test, see it fail, correct it, and ...
1
vote
3answers
52 views
Unit Testing Methods With File IO
I'm trying to get into the habit of writing unit tests, I've written a few before but they've usually been quite basic...I'd like to start making a move to TDD as i want to improve the quality of my ...
0
votes
1answer
21 views
How can I click_link a specific row with Capybara
I'm trying to write all my Capybara code to not use any CSS or funny matchers. For acceptance test purposes, I'm using Capybara to navigate only by button and link text that is visible to the user.
...
0
votes
1answer
34 views
Controller testing Show page with Rspec, it gives an error nil & and render empty page
I'm new to TDD on Rails, and I'm trying to test videos_controller with the book "Everyday Rails Testing with Rails" for simple show page but it gives me error 'nil' & render empty, as follows. But ...
1
vote
2answers
82 views
How to mock objects in Erlang using Meck?
Okay, I'm using Meck and I'm lost. My first language (that I've been writing for about 7 months) is Ruby, so I can't seem to wrap my brain around Meck mocking yet. I do get Ruby mocking though. ...
2
votes
1answer
52 views
Developing a whole application (not a single class) with TDD (BDD)? [closed]
After a lot of reading, learning examples and making simple class tests I desided to create my first simple real-life application using TDD.
My application should have the following behavior:
it's ...
1
vote
0answers
17 views
Test failure gives incomplete error message when using short syntax
There are 2 syntaxes (afaik) for writing tests with RSpec:
The classic/old way:
describe "when user_id is not present" do
before { @micropost.user_id = nil }
it "should not be valid" do
...
1
vote
2answers
63 views
How can I do unit testing for private function in Visual Studio (VB.Net and C#)?
I know it may sound like a silly question as I've heard many saying that you should only do unit testing for public function and indeed, visual basic.net in Visual studio IDE only allows me to do unit ...
0
votes
1answer
26 views
Get name of running test in Xunit
Using Xunit, how can I get the name of the currently running test?
public class TestWithCommonSetupAndTearDown : IDisposable
{
public TestWithCommonSetupAndTearDown ()
{
var ...
0
votes
1answer
23 views
How to test nested collections with FluentAssertions
I have the following spec
BidirectionalGraph Fixture = new BidirectionalGraph();
public void VerticesShouldBeAbleToAssociateMultipleEdges()
{
int a = 0;
int b = 1;
int c = 2;
...
1
vote
0answers
19 views
Bypass login/authentication in OCUnit application tests
I just setup application tests with OCUnit for my iOS project and am trying to figure out what to do with authentication. My app has a forced login screen where the user is required to authenticate ...
1
vote
1answer
54 views
Using OCMock with Unknown Number of Method Calls
I'm using OCMock in junction with GHUnit to try and recreate Graham Lee's "BrowseOverflow" project from Test-Driven iOS Development.
My understanding is to mock any object that isn't from the current ...
0
votes
0answers
28 views
Spork, Vagrant, and Rspec
So, I'm working in a pretty complex development enviornment that is hard to replicate locally on my Mac, so we're using Vagrant boxes and Chef scripts to keep everyone on the same page. What I would ...
1
vote
1answer
17 views
How to test BundleConfig
I have a problem with my bundles. Files .min is not being generated as reported on this link.
I have to create a test for it. How to do this?
[TestInitialize]
public void Setup()
{
...
3
votes
1answer
44 views
Unit test wrapper objects?
I try to use TDD as much as I can. When I do, I stowe all comunication with the outside away in wrapper classes. A few minutes ago, I made a wrapper for the static class Directory, so I can test my ...
0
votes
1answer
50 views
How to set up a test for a specific php function
Can anyone please help me set up an unit-test for this php code, ive been trying and haven't found a solution yet. I have recieved this code from the developer-team and Im supposed to create ...
0
votes
1answer
36 views
Finding where a method is called for a convention test
I'm trying to write a convention test that specifies that a method should only be called in some contexts - specifically I have a static Empty getter that I only want to allow used in test methods, ...
2
votes
2answers
82 views
Rails - Cannot get Rspec click link to work
Hey I am doing click_link in rspec rails then checking the linked page for content. The content is definitely on that page but it's still giving me an error that it is not.
The error
Failure/Error: ...
0
votes
1answer
90 views
Best practice TDD - Java Object Validation and clean code
Suppose a Java class called Car, whose objects are initialized through a static factory:
public class Car {
private String name;
private Car(String name){//...}
public static Car ...
-1
votes
1answer
64 views
Rails Rspec problems: undefined method 'has_link'
I'm at Hartl's tutoral Ch.8 now.
I just finished to create sign in/sign out functionality which works fine, but the tests always fail. I can't find the solution.
Failures:
1) Authentication signin ...
1
vote
2answers
53 views
MagicalRecord MR_createInContext: returns nil
I have a following method :
+(Group*)groupWithID:(NSString *)idNumber
inContext:(NSManagedObjectContext *)context
{
Group *group = nil;
if(idNumber && context)
{
...
0
votes
1answer
24 views
launchy gem terminates tests
I've got a simple spec
describe "Workers" do
describe "user attempts to view workers" do
context "admin logged in" do
end
context "non-logged in user" do
before do
visit ...
2
votes
1answer
38 views
PHP DRY Throwing InvalidArgumentException
In a framework I am building, I am moving towards making my code more testable as I was previously addicted to the MVC+Singleton pattern and had static classes galore. Since then, I have started to ...
0
votes
2answers
34 views
Dealing with code duplication in tests
At work I practice Test Driven Development as much as possible. One thing I often end up in though is having to set up a bunch of DTO's and when these have a slightly complex structure this becomes ...
1
vote
1answer
24 views
Mocking methods of the object under test
Lately I've been writing some objects wherein the behavior of one method sometimes consists of calling another one of its own methods under certain conditions. To test this, I've been mocking the ...
1
vote
2answers
31 views
Mocking MailController with ActionMailer.net using Moq
I'm trying to mock my MailController
_mockMailController = new Mock<IMailController>();
_mockMailController.Setup(x => x.ForgotPassword("test@email.com"));
My controller takes an ...
7
votes
2answers
125 views
Do I have to fake a value object in my unit test
I have written a class using TDD containing a method (method under test) which takes a simple value object as a parameter (range).
Code:
The method under test looks like this:
public ...
1
vote
1answer
44 views
How can I avoid over-testing with example
I've been trying to start testing my code more, and I thought I would mimic the style of some of the tests that were autogenerated for by me rails scaffolding (I'm using rspec and rails, but my ...



