... have that ... I try to keep the surveys short as possible. The challenge is that if you split them up then it becomes very difficult to analyze the ...
2008/11/1 Scott Ambler <scottwambler@...> ... Look Scott, I'm not trying to be hostile here; I'm trying to give you constructive feedback. 1. The less...
Olof Bjarnason
olof.bjarnason@...
Nov 1, 2008 3:47 pm
29215
... You make some pretty strong assumptions here. Sufficiently interested and motivated people will answer a long survey. A survey with good questions will get...
... to ... Yes, in general, the longer the survey the fewer the responses. Believe me, I cut down the survey as much as I possibly could while still addressing...
My givens: 1. Microsoft Visual Studio. native C++, and C# (I like the project/solution structure for interaction, but loathe it for settings management. WAY...
Hello, Alan. On Wednesday, November 5, 2008, at 7:02:27 AM, you ... Um, when you ship your software, do you have some way of building it? Please describe that...
subst y: d:\build rm -Rf y:\* cd to my working directory. run prebuild.bat. it configures a few things and downloads files to y: go to drive y, and run...
Dear All, I searched on the net for a simple mocking framework that works on .NET Compact Framework but I could not find one. I tried to compile Moq and NMock...
Alan, Well, don´t try to get to CI immediately. Can you at least automate a bit more? I recently created a build I could at least fire off when I wanted -...
You can also use python scripts in place of .bat files for automating at least some parts of the build. On Wed, Nov 5, 2008 at 8:46 AM, Donaldson, John (GEO) ...
Suppose I want to have a constant: public const string FilePrefix = "pre"; Now if I'm programming to an interface, I can't have any fields in there... So if I...
Why are you putting constants in implementation classes? Just don't do it and move the constants to a separate class(es) and use it everywhere you need. i.e....
While I'm at it, I'm trying to solve the Tools Problem: In order to properly build a program, there are numerous tools involved, all of which are irregularly...
... Well, it sounds like you have the beginnings of an automated build right there. I might write those first five steps into a batch file or other script and...
Brad Stiles
bradley.stiles@...
Nov 5, 2008 6:17 pm
29227
Hi Alan, ... We deal with them by installing them side-by-side. That only works for major versions, though, so we tend to avoid Visual Studio service packs. ...
... If you can automate it to work from a command line, you can use CI. Well, if all the tools return meaningful error cods. Start by figuring out how to get...
I just stumbled across the Testability Explorer <http://code.google.com/p/testability-explorer/>and I'm immediately left wondering why haven't I heard of this...
One of the question's I'm getting hit with a lot is show an example of real code developed with TDD. The point being that most examples we've looked at are too...
... I believe that a good chunk of Spring has been written using TDD. I'll try to verify that. -- Dave Rooney Mayford Technologies "Helping you become...
Hello, Alan. On Wednesday, November 5, 2008, at 7:37:25 AM, you ... I'd think all those things could be put in one bat file? Ron Jeffries www.XProgramming.com...
Maybe. The biggest issue is reliability. In between several steps I should check for success or failure. Those checks aren't as easy as checking the return...
... Fitnesse would be another one. It's an interesting case because you have quite a bit of complexity (nested tables, nested pages, setup/teardown, dynamic...
Hello, Alan. On Wednesday, November 5, 2008, at 6:52:40 PM, you ... Maybe. I wonder if Cruise Control would be useful ... Ron Jeffries www.XProgramming.com ...
There was also talk about this some time ago, I think in the spring or summer of this year. Maybe you could find it in the archives? Nina ... -- I reject your...
HI Ron, ... In time, maybe. I like to create a functioning build script without Cruise Control before I try to get it into the poll-scc-launch-build-report...
... That's not a particularly bad start actually. As long as the bat returns a failure code for error conditions, you could at least use a CI to wrap the .bat...
I wrote the Flex UndoRedo Framework a while ago that *might* serve as a good example: http://code.google.com/p/flexundoredo/ It's essentially an Undo/Redo...
... I was looking at this just yesterday. The idea of "Testable" cyclomatic complexity, or "Non-Mockable Total Recursive Cyclomatic Complexity" as they state...