XP Day 2005 : 28th & 29th November, London, U.K. ================================================ ~~ More than XP. More than one day ~~ XP Day is a two day...
10622
Dave
iamjaysman
Aug 2, 2005 3:15 pm
I'm trying to use NUnitASP 2.1 to test a web app which uses SQL server. NUnitASP appears to require anonymous access enabled (or you get a 401) but we're...
10623
Thomas Eyde
thomas_eyde
Aug 2, 2005 3:32 pm
You could impersonate the web site to use a valid Windows account or add the ASPNET account to the database. Windows authenticaton works with IE only, as far...
10624
Anderson, Kelly
kellycoinguy
Aug 2, 2005 3:37 pm
Probably obvious and not terribly useful, but why not create a Mock Object for the SQL part? -Kelly ________________________________ From:...
10625
Anderson, Kelly
kellycoinguy
Aug 2, 2005 3:38 pm
Has anyone made an attempt to do TDD in Excel spreadsheet development? -Kelly E-Mail messages may contain viruses, worms, or other malicious code. By reading...
10626
Cory Foy
Cory.Foy@...
Aug 2, 2005 3:42 pm
... You should be able to set Browser.Credentials with the appropriate ICredentials interface. Cory...
10627
Carl Manaster
cmanaster
Aug 2, 2005 4:14 pm
Hi, Kelly, ... Yes indeed. I find it very helpful. I set up columns for input and expected output, then put my formula beside the expected output column with...
10628
Phlip
phlipcpp
Aug 2, 2005 4:33 pm
... I think you just answered "has anyone maintained test resources in Excel?" vb-lite-unit, by Steve Jorgensen, targets VBA. -- Phlip ...
10629
Anderson, Kelly
kellycoinguy
Aug 2, 2005 4:44 pm
I figured you could (and should) do something like that... I guess there is no official ExcelUnit sort of thing though. The problem, as I see it, is that in...
10630
Carl Manaster
cmanaster
Aug 2, 2005 4:49 pm
Hi, Phlip, ... I'm sorry; I don't understand this. Are you saying that this isn't TDD? If so, why not? Peace, --Carl -- ...
10631
Carl Manaster
cmanaster
Aug 2, 2005 4:56 pm
Hi, Kelly, ... If I understand the question, the INDIRECT() function may be helpful to translate cell names to references; I just put "A2" into A1 and "A3"...
10632
Phlip
phlipcpp
Aug 2, 2005 4:56 pm
... What are we doing with Excel? The customer wants a spreadsheet, with such-and-so cells here and there, right? I TDD that by writing more cells and putting...
10633
Anderson, Kelly
kellycoinguy
Aug 2, 2005 5:13 pm
I suppose that could help in some cases... but it would only be a part of the solution. I'm just brainstorming about the issues here. -Kelly ...
10634
Carl Manaster
cmanaster
Aug 2, 2005 5:34 pm
Hi, Phlip, ... I'm very happy with tiny tests. I also see the cell as a very natural unit in spreadsheet development. Most formulas are beyond-testing ...
10635
Adam Dymitruk
adymitruk
Aug 2, 2005 5:45 pm
I have been doing that for the last 9 months. Adam...
10636
Phlip
phlipcpp
Aug 2, 2005 5:45 pm
... So the target is an Excel spreadsheet, and you TDD it by putting little tests in its cells. There's something wrong about this. (The right thing is that...
10637
Adam Dymitruk
adymitruk
Aug 2, 2005 5:50 pm
What you want to do is isolate functionality outside of Excel in VBA.. then use VBUnit to test the VBA you wrote. I wrap Excel functionality in clsWorksheet...
10638
Mike Emeigh
mwemeigh
Aug 2, 2005 6:05 pm
... One of the reasons that I appreciate these types of discussions is that they are typically steered away from deciding whether a particular approach is...
10639
Robert Hanson
mvarobert1
Aug 2, 2005 6:06 pm
I'm starting a project that will use web services under MS C++ 6.0 (which is not the .net version, but visual c++ predating .net). Suggestions for TDD tools...
10640
Carl Manaster
cmanaster
Aug 2, 2005 6:30 pm
Hi, Phlip, ... Say it's not Excel, but ruby: So the target is a ruby program, and you TDD it by putting little tests in its functions. There's something wrong...
10641
Donaldson, John (GEO)
geo_johnfr
Aug 3, 2005 1:43 pm
The latest tools for Office (VSTO) should make it quite easy to do. Just TDD from the spreadsheet down (does the sheet exist, does this cell have that value...
10642
bodey.jan@...
janbodey
Aug 3, 2005 4:50 pm
Hi I am just wondering if anybody has any thoughts/experiences of using NUnitAsp (positive and negative!) they could share with me? I was involved with a...
10643
Adam Dymitruk
adymitruk
Aug 3, 2005 4:54 pm
Have you tried Watir? Works with DHTML more so than the other one.. Adam...
10644
ginitram
Aug 3, 2005 5:01 pm
Summer 2005 issue's content: * Agile Development with ICONIX Process by Doug Rosenberg, Matt Stephens and Mark Collins-Cope This book's excerpt provides an...
10645
Cory Foy
cory_foy
Aug 3, 2005 5:04 pm
Hi Jan, ... I think you are on the right path by extracting as much out of the GUI as you can. My current project has me building a lot of Data Management ...
10646
Adam Dymitruk
adymitruk
Aug 3, 2005 5:21 pm
What about Javascript that changes the contents of the page. There is a lot more done on the client side with AJAX in the picture. [snip] ... [snip] In watir...
10647
banshee858
Aug 3, 2005 5:31 pm
I like NUnitAsp. If you are going to write a log of usercontrols (which is the recommended development course for ASP.Net), then NUnitAsp is built just for...
10648
Cory Foy
cory_foy
Aug 3, 2005 5:35 pm
... Actually there isn't anything done with AJAX - if there was, that would be a different story. ... Basically NUnitASP also references it by name - well...
10649
Adam Dymitruk
adymitruk
Aug 3, 2005 5:48 pm
Well, my dev is moving toward AJAX type stuff.. Also, a lot of my clients end up requesting client-side only enhancements.. ie, Javascript. One such request is...
10650
Andrew Forward
andrewforwar...
Aug 3, 2005 9:37 pm
I have found NUnitAsp provides a nice quick sanity check for a deployed application. In our current systems, we have about 25 NUnitAsp tests that try to...