Gishu

15,451
Reputation
1019 views

Registered User

Name Gishu
Member for 1 year
Seen Nov 27 at 11:11
Website
Location Bombay, India
Age 28
Developer - I like to build things and see them work. Gimme a good book or a game and I can keep myself out of trouble. Got hooked on Agile 2-3 years ago.. trying to get to the promised land since. Work with C Based languages. Play with Ruby.
7h
awarded  Popular Question
2d
awarded  Popular Question
Nov
25
comment Why can’t I call javac using the Backquotes/Backticks approach in Ruby?
Yes the delegating batch file was what I came up with too.. just before I went to sleep :) And it did work too.. but still not sure of the root cause of this problem.
Nov
25
comment Why can’t I call javac using the Backquotes/Backticks approach in Ruby?
didn't work. Same error.
Nov
25
revised Why can’t I call javac using the Backquotes/Backticks approach in Ruby?
Update after day1
Nov
24
asked Why can’t I call javac using the Backquotes/Backticks approach in Ruby?
Nov
23
comment Xpath visualization
I got the latest version 2.3.3.1_P. Tried to open a 5 MB xml file on it. It just hung and was unresponsive. Tried twice... then uninstalled.
Nov
23
comment Xpath visualization
Tried cooktop 2.500. It went down with a simple attribute based xpath. ERROR: Required white space was missing. (Verified query with Visual XPath. )
Nov
16
accepted WPF: TreeView and nested templates
Nov
16
comment WPF: TreeView and nested templates
The TreeView is an "ItemsContol" derivation. It can only display lists... which means for your case.. you'd have to stick your single project object into a list before pointing the TreeView at it. Give it a try.
Nov
16
comment WPF: TreeView and nested templates
See reply to your comment below...
Nov
15
answered WPF: TreeView and nested templates
Nov
14
awarded  Nice Answer
Nov
12
comment Ruby: character to ascii from a string
Did this change in Ruby 1.9 ?
Nov
11
comment TDD Anti-patterns catalogue
:) - also known as Process Compliance Backdoor.
Nov
11
awarded  Popular Question
Nov
10
awarded  Popular Question
Nov
5
answered Using Nunit to test constructor
Nov
4
awarded  Popular Question
Nov
4
revised C# Lock WinForm Controls
added 411 characters in body
Nov
4
answered C# Lock WinForm Controls
Oct
31
accepted VS2008 Navigate to class definition add-in
Oct
29
awarded  Enlightened
Oct
28
accepted Moq a proxy for unit testing
Oct
27
comment Why does the x.designer.cs part of the LinqToSql dbml triad disappear after an edit in the visual editor?
This is weird. I search for something and hit a question that I myself had posted on SO :)
Oct
27
comment Yet another unit testing / code coverage question. Is my approach sane?
Pretty much on the right track. @4 - you could use some interfaces to decouple your dependencies.
Oct
26
accepted C# program selected Event how in code
Oct
26
answered C# program selected Event how in code
Oct
26
answered Moq a proxy for unit testing
Oct
21
comment How do I test for typeof(dynamic)?
Need for this ?
Oct
17
answered First order array difference in Ruby
Oct
17
comment First order array difference in Ruby
Nice addon. each_cons.
Oct
8
comment Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app)
Contd... Debugging test cases can be done (add nunit as external exe to debug for your test dll) ; although that it implies that you don't know your code anymore. Sorting test cases - again not sure why you need it. But you could group your tests into categories like [Category("Slow Tests")] and then include or exclude them from test runs. You also have a checkbox view where you can manually tick tests you'd like to run. Finally 9. stacktrace - nunit does that in the first tab. A unit testing framework would be kinda crippled if it didnt point to the exact location where the test failed!
Oct
8
comment Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app)
ouch. 600 chars is not going to be enough. 1. that's good. I can run my tests on any (build/QA) machine without having to install VSTS. 2. If you want right-click and run tests, get Resharper/TestDriven.Net add-ins. Also see SO q#196740. #3,4,6,10 - doesn't make sense. I believe programmers know their code better than VS. It follows that they can better identify what tests to write. But then I'm test-infected (read TDD zealot). test cases should not be order dependent - so not sure why that is a disadvantage.
Oct
8
comment Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app)
Not trying to be dogmatic. If you haven't already read this take a look - pragprog.com/articles/tell-dont-ask . Peeking inside a class to look at its state - makes tests fragile. Your test now has implementation level knowledge.. tests should state what (and not how). The risk here is that future refactorings e.g. changing the type of variable holding the state or its name - break tests. Hence the term brittle or fragile tests. The behavior is not broken but the tests would still fail.
Oct
8
answered Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app)
Oct
8
comment Which Unit Test framework should I start with for C# in Visual Studio 2008? (Windows Forms app)
It's also an encapsulation breaker.. You're walking right into an anti-pattern - Visit stackoverflow.com/questions/333682/… and look for inspector. NUnit is doing the right thing by not supporting this.
Oct
8
comment TDD Anti-patterns catalogue
the point here is that you shouldn't test GUIs but rather that you shouldn't test only via the GUI. You can perform 'headless' testing withouth the GUI. Keep the GUI as thin as possible - use a flavor of MVP - you can then get away with not testing it at all. If you find that you have bugs cropping up in the thin GUI layer all the time, cover it with tests.. but most of the time, I dont find it worth the effort. GUI 'wiring' errors are usually easier to fix...
Oct
5
awarded  Enlightened
Oct
2
accepted WPF Paper-like control
Oct
2
awarded  Popular Question
Oct
2
comment How to avoid setup code duplication with record-replay mode of Rhino Mocks?
Works like a charm. Spent 30 mins because I was away from this page and forgot to use the None enumerated param. Good thing that Rhino moved to v3.5 :) Thanks a ton Kenneth.
Oct
2
comment Is there a site where I can post snippets of code for review?
RefactorTheirCSS
Oct
2
comment Is there a site where I can post snippets of code for review?
didnt know this.
Sep
30
comment How to verify that method was NOT called in Moq?
can't find this in Moq v3.1
Sep
30
comment How to verify that method was NOT called in Moq?
Also with option#2, you can't have a VerifyAll in a general Teardown method - it will fail saying that the expectation was not met ; when the test should ideally pass.
Sep
30
comment How to verify that method was NOT called in Moq?
+1 Was just about to post this :) Thanks for asking.
Sep
30
comment How to avoid setup code duplication with record-replay mode of Rhino Mocks?
contd.. which seems to be duplication to me.
Sep
30
comment How to avoid setup code duplication with record-replay mode of Rhino Mocks?
Sorry confused myself.. staring at this for too long... Yes. The resolution for 'inappropriately shared fixture' anti-patternis to write another xUnit testFixture class and duplicate all the member variables & shared setup.. Now if I do that - the new test fixture goes green. However everything in testfixture 1 fails for the same reason- Setup() creates the class, which subscribes to an event. ReplayAll() is called within a test method - turning the event subsc. into an expectation, which is not met;all tests fail. Option: move the creation of the test subject into each test after ReplayAll()
Sep
30
asked How to avoid setup code duplication with record-replay mode of Rhino Mocks?