1
vote
3answers
57 views

how can I validate two ASP.NET pages have the same output HTML?

I am working on legacy code for an ASP.NET website, and I want to refactor. I've come to the conclusion that the easiest way to test for breaks is to compare the final HTML with the old page, ...
6
votes
2answers
72 views

Testing PHP code that calls a static method

I want to test this code block which has to call a static class. class SomeModule { public function processFoo() { $foo = FooFactory::getFoo(); // ... Do something to $foo ...
1
vote
2answers
111 views

Using Moq, do I always need to mock all dependencies?

I had the following line in over 100 of my tests: var registry = new Mock<ObjectRegistry>(new List<Assembly>()).Object; A little refactoring changed my ObjectRegistry constructor to: ...
5
votes
1answer
109 views

Interface inheritance to breakup god objects?

I work on a fairly large product. It's been in development since .Net 1.0 was still a work-in-progress and so it has a lot of bad quality code and was not written with unit tests in mind. Now we're ...
0
votes
1answer
115 views

Issue mocking a class variable value in java

I have a class that has a private class variable initialized like public class MyClass{ private BusinessObject businessObject = BusinessObjectGenerator.getBusinessObject(); public ...
0
votes
1answer
89 views

how to make these testcases code nice? [closed]

I am a freshman of TDD and C++, I write some code works but it seems ugly... could you give me some tips on how to refactor these code? I define testcases like this: // define some test case ...
2
votes
1answer
80 views

What can i do in Oracle in order to preserve the savepoint if internal commit occurs?

background: i'm doing some Oracle plsql refactoring; The first think that i want to accomplish is to have unit test for the principal components. For this i'm using ruby with the gem plsq-spec ...
8
votes
2answers
220 views

Is there anything out there to make T4 code more… clean?

I have a fairly complex thing stuffed into a T4 template. Basically I take something like {=foo=} more text... and convert it into a class(view) like so: public class MyView { public string ...
2
votes
3answers
105 views

How to unit test public methods that use same private methods?

I need some guidance with my software testing. I'm over-complicating things, but I'm too fixated to see what I'm doing wrong, or an alternate way of doing things. I have several public methods that ...
0
votes
3answers
102 views

Repetitive code in unittest testcase

I have a testcase that looks like this: def MyTestCase(unittest.Testcase): def test_input01(self): input = read_from_disk('input01') output = run(input) validated_output = ...
1
vote
4answers
292 views

Osherove's naming convention for negative unit tests?

I'm trying to decide on a naming convention for unit tests. I like the one recommended by Roy Osherove: [MethodName_StateUnderTest_ExpectedBehavior] ...
1
vote
2answers
192 views

How to share code among several OCUnit test cases?

Is there any way to share code among several OCUnit test cases? Maybe I'm missing something obvious, but I haven't been able to do it... I have tried to put the common code in another class, but it ...
4
votes
4answers
547 views

How do I test a method was called within a class under test?

I'll start by saying I am pretty new to unit testing and I'd like to start using a TDD approach, but for now am writing unit tests for some existing classes to verify their functionality in all cases. ...
1
vote
2answers
208 views

Unit testing: private methods and how to refactor

I like unit testing, it is proving its worth immensely for the last year and a half or so ive used it. However I always have a problem or rather a niggle with private methods (and protected). I don't ...
0
votes
0answers
70 views

Partitioning big base class for Spring/Wicket based unit tests into smaller

Our unit tests extend something like ApplicationContextAwareBaseTest which during the past several years has bloated with lots and lots of mocks and an Spring ApplicationContext which is filled with ...
1
vote
2answers
81 views

How to deal with method rename when using Osherove's convention for unit tests?

I like the unit tests naming convention recommended by Roy Osherove where unit tests look like this: SomeMethod_Scenario_ExpectedResults For SomeMethod, there will usually be more test methods that ...
1
vote
2answers
166 views

How to unit test method which uses static classes, without Moles or Isolator?

I have a method public int GetHighestPriorityPriceRecordIndex(SearchAndExtractReply_2 priceInfoReply) { int index = 0; var priceExposableColumn = ...
0
votes
1answer
142 views

Refactoring Legacy Code for Unit Testing - Please Critique [closed]

I'm trying to refactor some code for Unit Testing and was hoping you could critique it. This is the original method. public class MyNonRefactoredClass { public List<MyClass> DoSomething() ...
6
votes
4answers
241 views

How do I ensure that I don't break the test code when I refactor it?

Code evolves, and as it does, it also decays if not pruned, a bit like a garden in that respect. Pruning mean refactoring to make it fulfill its evolving purpose. Refactoring is much safer if we have ...
0
votes
1answer
159 views

Looking to refactor Appsettings and HttpContext for unit test and moq

I have looked at a lot of examples, but in this case I wish to get a fresh set of eyes on refactoring this method below so that I can unit test it. I'm using mstest with moq and I know that the ...
4
votes
2answers
95 views

Refactor - UnitTest - Design Trilemma in Legacy Code

How do you tackle this problem when you are dealing with legacy code Classes you deal with is not well designed, requires some serious design changes Classes you deal with mostly tightly coupled ...
4
votes
5answers
576 views

Unit testing code which calls static methods

I've read most SO related questions ( here, here and there). The last question proposes four alternatives to make code which calls static methods unit-testable. I want to ask about my particular ...
0
votes
2answers
142 views

Refactoring and Testing

An example of scenario I'm trying to unit test somehow: A method gets three parameters: Company name, Plane Number 1, Plane Number 2 public Double getDistanceBetweenPlanes(Sting company, String ...
3
votes
1answer
84 views

Refactoring details in TDD

I have read this article http://codebetter.com/iancooper/2011/10/06/avoid-testing-implementation-details-test-behaviours/ And I am confusing about "Code developed in the context of refactoring ...
7
votes
1answer
155 views

Unit test on program which has lots of macros

Recently, I need to add unit test to one legacy program. But in it, there are lots of macros, like #ifdef CONFIG_XXX do xxx #endif #ifdef CONFIG_YYY do yyy #endif Currently, the generic program ...
1
vote
4answers
168 views

Get rid of hardware macros in embedded software

I was working on an embedded program using C. There are tons of hardware macros like #ifdef HardwareA do A #endif It's not readable, and hard to cover all the different paths with unit tests. ...
8
votes
2answers
272 views

How do you factor out common “before(:each)” calls in RSpec so that multiple specs can use them?

I'd like to factor this bunch of code so that all of my controller tests (well, almost all of them) use this before(:each) block: before(:each) do @user = User.new ...
1
vote
1answer
103 views

How would you refactor a loop to have a unit test per each interation?

Let's say I have a class which has a private void method. And I want to test this method by a some seed parameters for each specific iteration. For instance, I want to make StartTrhoughGridCells ...
2
votes
4answers
176 views

Why and how implementing initial unit tests in legacy application code

I’m in the process of integrating unit tests in an existing legacy application. In the book “Working with legacy application” and many other books that I read, it was written that you always should ...
7
votes
6answers
605 views

Red, green, refactor - why refactor?

I am trying to learn TDD and unit testing concepts and I have seen the mantra: "red, green, refactor." I am curious about why should you refactor your code after the tests pass? This makes no sense ...
3
votes
2answers
126 views

How to handle the refactoring phase of TDD

In the course of a TDD session, suppose I write a failing test, and then make it pass. I refactor by extracting code out of the original Unit, using refactorings such as Extract Class and Move Method. ...
1
vote
1answer
424 views

Advantages & Disadvantages of Dependency-Injecting Non-Instantiable Objects

What, in your opinion, are the advantages and disadvantages of dependency-injecting non-instantiable objects in JavaScript? Some context you may want to explore are: Unit-testing Is it worth ...
2
votes
1answer
616 views

How to factorise python test cases with nosetests

I have several functions on graph f(), g() and h() that implements different algorithms for the same problem. I would like to unit-test these functions using unittest framework. For each algorithm, ...
10
votes
4answers
1k views

Delphi style: How to structure data modules for unit-testable code?

I am looking for some advice about structuring Delphi programs for maintainability. I've come to Delphi programming after a couple of decades of mostly C/C++ though I first learned to program with ...
5
votes
2answers
317 views

UnitTesting a class that returns a complex dataset

After months of frustration and of time spent in inserting needles in voodoo dolls of previous developers I decided that it is better try to refactor the legacy code. I already ordered Micheal ...
2
votes
3answers
116 views

How to avoid false positives using a mockist approach in unit tests?

Since the datastructure of my application domain is becoming pretty complex as of late, I started reading up on mock objects. Soon a simple question came to my mind, but the answer has proven to be ...
0
votes
2answers
190 views

Challenges of refactoring unit-tests to be maintainable and readable when dealing with List<T> objects

In the book The Art of Unit Testing it talks about wanting to create maintainable and readable unit tests. Around page 204 it mentions that one should try to avoid multiple asserts in one test and, ...
25
votes
11answers
1k views

Our code sucks and I'm powerless to fix it. Help! [closed]

Our code sucks. Actually, let me clarify that. Our old code sucks. It's difficult to debug and is full of abstractions that few people understand or even remember. Just yesterday I spent an hour ...
1
vote
0answers
142 views

Rename Unit Test when renaming class Visual Studio

On a related note to this question, which just came up: I commonly follow the naming convention LibraryClass <-> LibraryClassTests for my unit tests. However, when renaming LibraryClass using the ...
0
votes
3answers
128 views

Seeking suggestions on redesigning the interface

As a part of maintaining large piece of legacy code, we need to change part of the design mainly to make it more testable (unit testing). One of the issues we need to resolve is the existing interface ...
1
vote
1answer
193 views

How to refactor my class so I can unit test it?

I am trying to unit test a class that does SAX parsing and creates an object. This class takes a string as a parameter representing the URL of a document on the internet, parses it and then creates an ...
3
votes
2answers
705 views

How do I unit test the methods in a method object?

I've performed the "Replace Method with Method Object" refactoring described by Beck. Now, I have a class with a "run()" method and a bunch of member functions that decompose the computation into ...
3
votes
3answers
442 views

Is TDD broken in Python?

Assume we have a class UserService with attribute current_user. Suppose it is used in AppService class. We have AppService covered with tests. In test setup we stub out current_user with some mock ...
1
vote
2answers
110 views

Is there a strategy to back-port C# code?

I intend using the Argotic framework in support of a .Net Atom server. Unfortunately my target server (over which I have no control) only has .Net 1.1 - any the Argotic library is only in .Net 2 and ...
3
votes
4answers
823 views

moqing static method call to c# library class

This seems like an easy enough issue but I can't seem to find the keywords to effect my searches. I'm trying to unit test by mocking out all objects within this method call. I am able to do so to all ...
7
votes
6answers
239 views

Refactoring Service Layer classes

My company is on a Unit Testing kick, and I'm having a little trouble with refactoring Service Layer code. Here is an example of some code I wrote: public class InvoiceCalculator:IInvoiceCalculator ...
7
votes
4answers
546 views

Approaching refactoring

I have a very data-centric application, written in Python / PyQt. I'm planning to do some refactoring to really separate the UI from the core, mainly because there aren't any real tests in place yet, ...
6
votes
7answers
634 views

Tips on how to write refactoring-friendly unit TDD tests

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 ...
5
votes
7answers
158 views

Any advice for a developer given the task of enhancing & refactoring a business critical application?

Recently I inherited a business critical project at work to "enhance". The code has been worked on and passed through many hands over the past five years. Consultants and full-time employees who are ...
1
vote
4answers
330 views

Creating testable code

I have a file - in a large legacy codebase - containing methods that access databases. No classes are used, just a header file with the method declarations, and the source file with the ...

1 2