active questions tagged refactoring - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:29:59Zhttp://stackoverflow.com/feeds/tag/refactoringhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1523517/refactoring-tool-for-spring-net1Refactoring tool for Spring.NETArt2009-10-06T03:54:44Z2009-12-01T16:41:27Z
<p>Hi all,</p>
<p>Currently I get to edit a lot of Spring.NET XML files, and I do find this work to quite repetitive and, frankly boring.</p>
<p>Most of the stuff I do is sort of 'refactoring' - generalising XML declaration for instances and "inheriting" from those generalised structures to declare more specific ones.</p>
<p>As I said, it's a no-brainier type of task but it does require a lot of attention and concentration and it's easy to make a mistake.</p>
<p>I would imagine that a lot of editing of Spring.NET xml files can be automated with a tool similar to ReSharper.</p>
<p>Can you recommend anything?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1826914/strategies-for-multithreaded-application1Strategies for multithreaded applicationMorri2009-12-01T15:27:24Z2009-12-01T16:04:11Z
<p>I might inherit a somewhat complex multithreaded application, which currently has several files with 2+k loc, lots of global variables accessed from everywhere and other practices that I would consider quite smelly.</p>
<p>Before I start adding new features with the current patterns, I'd like to try and see if I can make the basic architecture of the application better. Here's a short description :</p>
<ul>
<li>App has in memory lists of data, listA, listB</li>
<li>App has local copy of the data (for offline functionality) dataFileA, dataFileB</li>
<li>App has threads tA1, tB1 which update dirty data from client to server</li>
<li>Threads tA2, tB2 update dirty data from server to client</li>
<li>Threads tA3, tB3 update dirty data from in memory lists to local files</li>
</ul>
<p>I'm kinda trouble on what different patterns, strategies, programming practices etc I should look into in order to have the knowledge to make the best decisions on this.</p>
<p>Here's some goals I've invented for myself:</p>
<ol>
<li>Keep the app as stable as possible </li>
<li>Make it easy for Generic Intern to add new features (big no-no to 50 lines of boilerplate code in each new EditRecordX.cs )</li>
<li>Reduce complexity</li>
</ol>
<p>Thanks for any keywords or other tips which could help me on this project.</p>
http://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings7Eclipse: Most useful refactoringsAdrian2009-11-26T17:11:22Z2009-12-01T15:42:31Z
<p>Every now and again, I make use of the Eclipse refactoring feature. Some techniques are more obvious then others and some I never tried.</p>
<p>What refactoring is most useful for you and why?</p>
<p>Note: I find this presentation very useful, perhaps because it is example driven therefore easy to understand:</p>
<p>"<a href="http://www.ibm.com/developerworks/library/os-ecref/" rel="nofollow">Refactoring for everyone - How and why to use Eclipse's automated refactoring features</a>"</p>
<p>Edit: This article is useful as well (Thanks jitter)</p>
<p><a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-refactoring/index.html" rel="nofollow">Explore refactoring functions in Eclipse JDT</a></p>
http://stackoverflow.com/questions/1800634/diff-tool-that-can-compare-sub-sections-of-files1Diff tool that can compare sub-sections of filesEvilPuppetMaster2009-11-25T23:20:52Z2009-12-01T14:07:50Z
<p>I'm looking for a diff tool that will allow me to compare just a sub-section of a file with a section of another file, or even of itself. Preferably eclipse based but will take all suggestions.</p>
<p>Yes I know I can copy out the two sections into different files and compare those, but that is very tedious when you are trying to do a large amount of refactoring.</p>
<p>Basically I'm trying to remove as much duplicated code as possible from a code base that is suffering from a great deal of ctrl-V 'inheritance' ;-) However the pasted parts have evolved apart a little over time.</p>
http://stackoverflow.com/questions/1824366/how-to-handle-widespread-code-format-changes-in-a-git-repository10How to handle widespread code format changes in a git repositoryMarkusQ2009-12-01T06:30:17Z2009-12-01T09:34:13Z
<p>We have a project with around 500,000 lines of code, managed with git, much of it several years old. We're about to make a series of modifications to bring the older code into conformance with the developer community's current standards and best practices, with regards to naming conventions, exception handling, indentation, and so forth.</p>
<p>You can think of it as something between pretty printing and low level/mechanical refactoring.</p>
<p>This process is likely to touch almost every line of code in the code base (~85%), and some lines will be subject to as many as five modifications. All of the changes are intended to be semantically neutral.</p>
<p>
<li>Is there any way to make the changes transparent to git blame, etc. so that when looking at the code a month from now we'll see the commit the logic was introduced in, not the one in which the indentation or capitalization was changed?
<li>What's the best way to pull merges from forks that have not undergone this process? My present plan would be to have a script clone the forked repo, apply the automated process to it and its base, diff them, then apply the diff. But I'd love to have a cleaner answer.
<li>Are there any other problems of this sort that I'm not seeing, and if so what can be done to mitigate them? I'm figuring that git bisect, etc. should be fine, git log, etc. crossing the great divide will be annoying unless you are careful, and git diff will be hopeless, but I'm not convinced I'm not overlooking another pain point.</p>
http://stackoverflow.com/questions/1388469/is-there-a-working-c-refactoring-tool22Is there a working C++ refactoring tool?RED SOFT ADAIR-StefanWoe2009-09-07T09:38:02Z2009-11-30T10:46:00Z
<p>Does anybody know a fully featured refactoring tool for C++ that works reliably with large code bases (some 100.000 lines)?</p>
<p>I tried whatever i can find again and again over the last years: SlickEdit, Eclipse CDT. They all were not at all usable. </p>
<p><strong>SUMMARY</strong>:
I took time and evaluated "Visual Assist X" as well as "Refactor for C++". Both have some impressing features, but both as well are far from perfect. Extracting a large block of code usually is not done satisfying without manual modifications - and therefore does not pay off.</p>
<p>"Visual Assist X" has nice features such as much more complete autocompletition etc. But it leads to so much flickering and slows down much at certain points.</p>
<p>By my opinion therefore the answer is: "No, there is no production ready refactoring tool for C++"</p>
http://stackoverflow.com/questions/1185993/refactoring-form-to-state-pattern2Refactoring Form to State Pattern?GordonG2009-07-27T00:44:57Z2009-11-30T09:25:34Z
<p>I want to refactor some code.</p>
<p>Basically the code I want to refactor is a Form (using System.Windows.Forms;)</p>
<p>The way it is setup now, depending on which radio button you selected it shows a different layout for the window: different labels, buttons, etc. Not always a big difference, but different. This is a lot of conditional statement junk all over the place. I wanted instead to refactor it with the State pattern. There are three main states.</p>
<p>I'm not sure the best way to do this. Right now the IState interface has a DoAction() method which does some action particular to the unique State, and a DrawForm() method which re-draws the form based on the current State... However, to do the DrawForm(), the State classes need to be able to access the Form's member variables. That's what threw me for a loop. I didn't really want to expose them. </p>
<p>Is there a better way to do this?</p>
http://stackoverflow.com/questions/164847/what-is-in-your-vimrc56What is in your .vimrc?Sklivvz2008-10-02T22:14:18Z2009-11-29T23:54:52Z
<p>Vi and Vim allow for really awesome customization, typically stored inside a <code>.vimrc</code> file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.</p>
<p><strong>What other tricks for productive programming have you got, hidden in your .vimrc?</strong></p>
<p>I am mostly interested in refactorings, auto classes and similar productivity macros, especially for C#.</p>
http://stackoverflow.com/questions/1779679/how-can-i-make-this-repeated-code-more-elegant0How can I make this repeated code more elegant?oo2009-11-22T19:19:40Z2009-11-29T05:45:23Z
<p>I have this repeated code below and I am assuming that this can be consolidated but if you notice each dictionary is different generic dictionary:</p>
<p>dictionary1 is of type </p>
<pre><code>Dictionary<int, ContinuousIntegrationSolution>
</code></pre>
<p>whereas dictionary2 is of type:</p>
<pre><code>Dictionary<int, BugTracker>
DataTable dt = GetDataTable("CI");
for (int i = 0; i < dt.Rows.Count; i++)
{
DataRow dr = dt.Rows[i];
int id = Convert.ToInt32(dr["id"]);
string name = dr["name"].ToString();
_dictionary1[id] = new ContinuousIntegrationSolution(){Name = name};
}
DataTable dt1 = GetDataTable("Bug_Tracking");
for (int i = 0; i < dt1.Rows.Count; i++)
{
DataRow dr = dt1.Rows[i];
int id = Convert.ToInt32(dr["id"]);
string name = dr["name"].ToString();
_dictionary2[id] = new BugTracker() { Name = name };
}
DataTable dt2 = GetDataTable("SDLC");
for (int i = 0; i < dt2.Rows.Count; i++)
{
DataRow dr = dt2.Rows[i];
int id = Convert.ToInt32(dr["id"]);
string name = dr["name"].ToString();
_dictionary3[id] = new SDLCProcess() { Name = name };
}
</code></pre>
<p><hr></p>
<p>NOTE: I have fixed the few typos that were mentioned below.</p>
http://stackoverflow.com/questions/28796/what-refactoring-tools-do-you-use-for-python8What refactoring tools do you use for Python ?Thomas Vander Stichele2008-08-26T18:26:51Z2009-11-28T18:07:40Z
<p>I have a bunch of classes I want to rename. Some of them have names that are small and that name is reused in other class names, where I don't want that name changed. Most of this lives in Python code, but we also have some XML code that references class names.</p>
<p>Simple search and replace only gets me so far. In my case, I want to rename AdminAction to AdminActionPlug and AdminActionLogger to AdminActionLoggerPlug, so the first one's search-and-replace would also hit the second, wrongly.</p>
<p>Does anyone have experience with Python refactoring tools ? Bonus points if they can fix class names in the XML documents too.</p>
http://stackoverflow.com/questions/785667/python-tool-that-suggests-refactorings7Python tool that suggests refactoringsAnonymous2009-04-24T12:41:02Z2009-11-28T17:01:04Z
<p>When digging into legacy Python code and writing Python code myself, I often use <a href="http://www.logilab.org/857" rel="nofollow">pylint</a>. I'm also using <a href="http://clonedigger.sourceforge.net/" rel="nofollow">Clone Digger</a>. I've recently started to use <a href="http://rope.sourceforge.net/" rel="nofollow">rope</a>, which is a library for automated refactoring.</p>
<p>But I'm looking for something else than rope. I would prefer a tool that just makes suggestions about possible refactorings: names the refactoring, optionally provides a short description of it (great for learning purposes), highlights the code section and lets me do the refactoring myself. Is there such a tool?</p>
http://stackoverflow.com/questions/1809174/performance-implications-with-clean-code1Performance implications with 'clean code'Erik van Brakel2009-11-27T14:45:33Z2009-11-28T16:48:24Z
<p>At my workplace we're planning a major refactor on our core product, a web application with several 'modules'. I quoted that because that's one of our main concerns: modules are not really modules, the whole thing is monolithic. The application is written in PHP with smarty templating and using Pear for accessing a MySQL database. We're not really concerned with database independence, although it would be nice if that wouldn't take months to implement.</p>
<p>Our main concerns are that development time/cost is increasing exponentially because of bugs popping up in unrelated places and not having a sound common architecture to rely on to get the most common functionality (each module is basically copy/paste from the previous one, then adapt).</p>
<p>I've got some experience with the web MVC principle, mainly in ASP.NET MVC. I like the clean separation it offers and the testability. However, when trying this on a local machine the app is simply a lot slower than it should be. </p>
<p>Alright, enough introduction, off to the questions:
- Should I rely on caching modules? Does this remove most of the overhead using a good architecture provide? Something like APC.</p>
<ul>
<li>The application is mainly read. Writing is mainly single values (change a single field on a record). Any OR/M for PHP that are good at this?</li>
<li>Also looking for a flexible MVC framework. I know Zend, CakePHP, maybe Symfony?</li>
</ul>
<p>The tricky part is that we don't have the luxury of being able to do a full rewrite. We'll have to incrementally improve a currently very messy codebase. This has to be done while writing new code, or fixing bugs. One thing I'd really, REALLY like to be able to do is write a regression test for a new bug before fixing it, to prevent it from popping up again later (this happens, occasionally).</p>
<p>The stack I'm currently considering contains:</p>
<ul>
<li>MVC framework of choice</li>
<li>Logging (log4php?)</li>
<li>an OR/M of choice (doesn't have to be dynamic, code generation is fine too)</li>
<li>IoC container of choice</li>
<li>Smarty Templating, perhaps abstracted so we can switch it out if we need to.</li>
<li>Opcode cache of choice (we're using one now, forgot which one, have to ask sysadmin)</li>
</ul>
<p>The main point that worries me is the performance implications of creating clean code in PHP. Seeing it's a parsed language opposed to something like the .NET/Java web stack, creating abstractions for otherwise in-line code (with obligatory separation in different files) might create new problems on another level.</p>
<p><hr></p>
<p>Note: Retag if you come up with more appropriate tags, I'm not sure on the current ones.</p>
http://stackoverflow.com/questions/1797984/anyone-tried-justcode3Anyone tried JustCode? silverArc2009-11-25T16:05:46Z2009-11-28T11:39:26Z
<p>Have you used <a href="http://www.telerik.com/products/justcode.aspx" rel="nofollow">JustCode</a>? is it better than resharper? seems like performance better. Do I need to uninstall resharper before using JustCode?</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies2What are the best code refactoring strategies ?Pierre-Jean Coudert2008-09-24T17:26:29Z2009-11-27T21:12:15Z
<p>Thanks for sharing your point of view and previous experiences here.</p>
<p>Here are some of the point you can write on:</p>
<ul>
<li>What must be the main refactoring goals ?</li>
<li>How do you scheduled your refactoring tasks ?</li>
<li>Do you recommend any specific tool ?</li>
<li>Do you plan pre and post refactoring tests ?</li>
<li>Do you plan refactoring specific code-reviews ?</li>
<li>...</li>
</ul>
<p>Anyway, feel free to share any thought, tip or best practice you can think about refactoring issues !</p>
http://stackoverflow.com/questions/1042210/how-can-i-write-a-visual-studio-macro-to-perform-an-extract-class-refactoring1How can I write a Visual Studio macro to perform an Extract Class refactoring?turboneat2009-06-25T04:37:34Z2009-11-27T16:05:51Z
<p><strong>I'm trying to build a macro for Visual Studio 2008 that behaves thusly:</strong> (Extract Class Macro)</p>
<p>I highlight some text in the currently open document and call the Macro (using a keybinding or whatever).</p>
<p>The macro runs "Project.AddClass" for the current active project, allowing me to specify the Class name.</p>
<p>The macro adds the text I originally had highlighted in the other document into the newly-created class file, and removes the text from the original file.</p>
<p>The text is added to the new file inside the new class body, i.e. inside the opening and closing braces.</p>
<p>I've been tinkering with it, but I can't get a handle to the created class document.</p>
<p>Any help will be much appreciated.</p>
http://stackoverflow.com/questions/1137480/visual-c-project-dependency-analysis2(Visual) C++ project dependency analysispolyglot2009-07-16T13:12:39Z2009-11-27T15:18:17Z
<p>I have a few large projects I am working on in my new place of work, which have a complicated set of statically linked library dependencies between them. </p>
<p>The libs number around 40-50 and it's really hard to determine what the structure was initially meant to be, there isn't clear documentation on the full dependency map.</p>
<p>What tools would anyone recommend to extract such data? </p>
<p>Presumably, in the simplest manner, if did the following:</p>
<ol>
<li><p>define the set of paths which correspond to library units</p></li>
<li><p>set all .cpp/.h files within those to belong to those compilation units</p></li>
<li><p>capture the 1st order #include dependency tree </p></li>
</ol>
<p>One would have enough information to compose a map - refactor - and recompose the map, until one has created some order.</p>
<p>I note that <a href="http://www.ndepend.com" rel="nofollow">http://www.ndepend.com</a> have something nice but that's exclusively .NET unfortunately.</p>
<p>I read something about Doxygen being able accomplish some static dependency analysis with configuration; has anyone ever pressed it into service to accomplish such a task?</p>
http://stackoverflow.com/questions/1806393/is-there-a-way-to-extract-a-class-with-methods-in-eclipse6Is there a way to extract a class with methods in eclipse?John Baker2009-11-27T01:27:48Z2009-11-27T05:07:14Z
<p>I am trying to refactor a class I have into 2 classes. Unfortunately eclipse's extract class function seems to only support the variables which really isn't all that helpful. Is there a way to do it that extracts the methods or Is there a plugin that does it? Thanks </p>
http://stackoverflow.com/questions/1804930/c-what-complex-refactoring-features-do-you-wish-there-were-1[C#] What complex refactoring features do you wish there were?Dmitri Nesteruk2009-11-26T17:39:17Z2009-11-26T17:56:43Z
<p>Tools like CodeRush and Resharper offer lots of simple refactorings, such as 'Rename Variable'. But if you could have any refactoring feature at all (no matter how complex), what would it be?</p>
<p>(I know, everyone wants a 'make program perfect' refactoring, but let's be realistic here.)</p>
http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo2Is there an elegant way to remove nulls while transforming a Collection using Google Collections?Jonik2009-11-26T09:42:20Z2009-11-26T13:55:52Z
<p>I have a question about simplifying some Collection handling code, when using Google Collections.</p>
<p>I've got a bunch of "Computer" objects, and I want to end up with a Collection of their "resource id"s. This is done like so:</p>
<pre><code>Collection<Computer> matchingComputers = findComputers();
Collection<String> resourceIds =
Lists.newArrayList(Iterables.transform(matchingComputers, new Function<Computer, String>() {
public String apply(Computer from) {
return from.getResourceId();
}
}));
</code></pre>
<p>Now, <code>getResourceId()</code> may return null (and changing that is not an option right now), yet in this case I'd like to omit nulls from the resulting String collection.</p>
<p>Here's one way to filter nulls out: </p>
<pre><code>Collections2.filter(resourceIds, new Predicate<String>() {
@Override
public boolean apply(String input) {
return input != null;
}
});
</code></pre>
<p>You could put all that together like this:</p>
<pre><code>Collection<String> resourceIds = Collections2.filter(
Lists.newArrayList(Iterables.transform(matchingComputers, new Function<Computer, String>() {
public String apply(Computer from) {
return from.getResourceId();
}
})), new Predicate<String>() {
@Override
public boolean apply(String input) {
return input != null;
}
});
</code></pre>
<p>But this is hardly elegant, let alone readable, for such a simple task! In fact, plain old Java code (with no fancy Predicate or Function stuff at all) would arguably be much cleaner:</p>
<pre><code>Collection<String> resourceIds = Lists.newArrayList();
for (Computer computer : matchingComputers) {
String resourceId = computer.getResourceId();
if (resourceId != null) {
resourceIds.add(resourceId);
}
}
</code></pre>
<p>Using the above is certainly also an option, but out of curiosity (and desire to learn more of Google Collections), <strong>can you do the exact same thing in some shorter or more elegant way using Google Collections</strong>?</p>
http://stackoverflow.com/questions/1802965/create-a-new-method-from-selecting-existing-code-block-eclipse1Create a new method from selecting existing code block, Eclipseian_scho_es2009-11-26T10:46:43Z2009-11-26T11:49:21Z
<p>I'm using <em>Eclipse 3.something</em> and would like to know if it is possible to create a new method from selecting a block of code? Obviously the method's signature would contain the necessary existing references and we can't return more than one variable from a method.</p>
<p>I have various methods where code related to presentation is mixed with code related to the logic. TY</p>
http://stackoverflow.com/questions/1060483/dependency-injection-in-c0Dependency Injection in C++frast2009-06-29T20:53:19Z2009-11-26T08:14:50Z
<p>How do I implement dependancy injection in C++ explicitly without using frameworks or reflection?</p>
<p>I could use a factory to return a auto_ptr or a shared_ptr. Is this a good way to do it?</p>
http://stackoverflow.com/questions/186970/what-resharper-4-0-live-templates-for-c-do-you-use18What ReSharper 4.0 live templates for C# do you use?Rinat Abdullin2008-10-09T12:07:43Z2009-11-26T01:31:42Z
<p>What ReSharper 4.0 templates for <strong>C#</strong> do you use?</p>
<p>Let's share these in the following format:</p>
<p><hr /></p>
<h2>[Title]</h2>
<p><em>Optional description</em> </p>
<p><strong>Shortcut:</strong> shortcut<br />
<strong>Available in:</strong> [AvailabilitySetting]</p>
<pre><code>// Resharper template code snippet
// comes here
</code></pre>
<p><strong>Macros properties</strong> (if present):</p>
<ul>
<li><strong>Macro1</strong> - Value - EditableOccurence</li>
<li><strong>Macro2</strong> - Value - EditableOccurence</li>
</ul>
<p><hr /></p>
<ul>
<li>One macro per answer, please!</li>
<li>Here are some samples for <a href="http://stackoverflow.com/questions/186970/what-resharper-40-templates-for-c-do-you-use#186978">NUnit test fixture</a> and <a href="http://stackoverflow.com/questions/186970/what-resharper-40-templates-for-c-do-you-use#186978">Standalone NUnit test case</a> that describe live templates in the suggested format.</li>
</ul>
http://stackoverflow.com/questions/198825/best-way-to-get-rid-of-hungarian-notation2Best way to get rid of hungarian notation?Robert S.2008-10-13T19:59:10Z2009-11-25T15:55:09Z
<p>Let's say you've inherited a C# codebase that uses one class with 200 static methods to provide core functionality (such as database lookups). Of the many nightmares in that class, there's copious use of Hungarian notation (the bad kind).</p>
<p>Would you refactor the variable names to remove the Hungarian notation, or would you leave them alone?</p>
<p>If you chose to change all the variables to remove Hungarian notation, what would be your method?</p>
http://stackoverflow.com/questions/1797667/c-switch-statement-refactoring3C# Switch Statement refactoringkoosk2009-11-25T15:26:04Z2009-11-25T15:49:39Z
<p>The purpose of the code below is to determine if a particular date qualifies as a "weekend" i.e after 12:00 PM on Thursday, minimum 2 days and before Monday 12:00 PM</p>
<p>Is there a better way? If-Else turns ugly and the Strategy pattern is way too much work for this.</p>
<pre><code>public bool ValidateWeekend(DateTime pickupDate, DateTime dropoffDate)
{
TimeSpan ts = dropoffDate.Subtract(pickupDate);
if (ts.TotalDays >= 2 && ts.TotalDays <= 4)
{
switch (pickupDate.DayOfWeek)
{
case DayOfWeek.Thursday:
if (pickupDate.Hour >= 12)
{
switch (dropoffDate.DayOfWeek)
{
case DayOfWeek.Sunday:
return true;
case DayOfWeek.Monday:
if (dropoffDate.Hour <= 12)
{
return true;
}
return false;
}
}
break;
case DayOfWeek.Friday:
switch (dropoffDate.DayOfWeek)
{
case DayOfWeek.Sunday:
return true;
case DayOfWeek.Monday:
if (dropoffDate.Hour <= 12)
{
return true;
}
return false;
}
break;
case DayOfWeek.Saturday:
switch (dropoffDate.DayOfWeek)
{
case DayOfWeek.Sunday:
return true;
case DayOfWeek.Monday:
if (dropoffDate.Hour <= 12)
{
return true;
}
return false;
}
return false;
}
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/1796829/is-there-any-c-code-beautifuler-plug-in-for-eclipse0Is there any C++ code beautifuler plug-in for eclipse ?ccfenix2009-11-25T13:14:15Z2009-11-25T13:18:56Z
<p>hi,
I found a very tempting function in Netbeans, which is to re-factor or 'beautiful-ize' the c++ code according to some parameters, such as tab length, {'s position, etc</p>
<p>is there anything similar in Eclipse, which keyword should I google?</p>
http://stackoverflow.com/questions/317074/best-strategy-to-get-coding-prepared-for-unit-testing3Best strategy to get coding prepared for unit testingoo2008-11-25T11:36:02Z2009-11-25T12:24:09Z
<p>I have a solution that is missing a lot of code coverage. I need to refactor this code to decouple to begin to create unit tests. What is the best strategy? I am first thinking that I should push to decouple business logic from data access from businessobjects to first get some organization and then drill down from there. Since many of the classes don't support single responsible principle, it's hard to begin testing them.</p>
<p>Are there are other suggestions or best practices from taking a legacy solution and getting it into shape to be ready for code coverage and unit testing?</p>
http://stackoverflow.com/questions/1778683/dead-code-detection-in-php5Dead code detection in PHPFedyashev Nikita2009-11-22T13:23:46Z2009-11-25T08:23:04Z
<p>I have a project with very messy code - lots of duplication and dead code here and there.</p>
<p>Some time ago there was zero code coverage by unit-tests but now we're trying to write all new code in T.D.D. manner and lowering technical debt by covering "old" code by unit-tests as well(test-last technique).</p>
<p><b>Business logic's complexity is quite high</b> and sometimes no one can answer whether some methods are used or not.</p>
<p>How this dead code methods can be found? Extensive logging? Higher test coverage?(It is not very easy because customers want new features to come out)</p>
http://stackoverflow.com/questions/592350/what-successful-conversion-rewrite-of-software-have-you-done7What successful conversion/rewrite of software have you done?RS Conley2009-02-26T20:43:05Z2009-11-25T07:05:08Z
<p>What successful conversion/rewrite have you done of software you were involved with? What where the languages and framework involved in the process? How large was the software in question? Finally what is the top one or two thing you learned from being involved with the process.</p>
<p>This is related to this <a href="http://stackoverflow.com/questions/592354/what-failed-conversion-rewrite-of-sofware-have-you-done">question</a></p>
http://stackoverflow.com/questions/1795119/template-pattern-violates-encapsulation1Template pattern violates encapsulation?theraneman2009-11-25T06:58:43Z2009-11-25T07:01:33Z
<p>Hi guys,
Please take a look at this piece of code I came up with.</p>
<pre><code> abstract class Command
{
public void Execute(string[] commandParameters)
{
CommandResult result = ExecuteCommand(commandParameters);
PrintResult(result);
}
public abstract CommandResult ExecuteCommand(string[] commandParameters);
public abstract void PrintResult(CommandResult result);
}
</code></pre>
<p>There will be several commands inheriting from this Command class. Each command would override ExecuteCommand and PrintResult. Although with this design, for the client code, I am exposing both Execute and ExecuteCommand function which is wierd. I feel like I need to define a template for a function but not expose other functions which are used in that template! Refactoring fellas, my code sucks almost all the time, please let me know what might be the best way out here.</p>
http://stackoverflow.com/questions/1299885/removing-tightly-coupled-code2Removing tightly coupled code.Gren2009-08-19T13:21:43Z2009-11-25T05:44:22Z
<p>Forgive me if this is a dupe but I couldn't find anything that hit this exact question.</p>
<p>I'm working with a legacy application that is very tightly coupled. We are pulling out some of the major functionality because we will be getting that functionality from an external service.</p>
<p>What is the best way to begin removing the now unused code? Should I just start at the extreme base, remove, and refactor my way up the stack? During lunch I'm going to go take a look at <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a>.</p>