Search the web
Sign In
New User? Sign Up
jsunit
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 140 - 169 of 1225   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
140
Has anyone used jsUnit to test complex frameset interactions and such? We're writing a complex intranet application with lots of javascript and I want to write...
joelshellman <joel.sh...
joelshellman
Offline Send Email
Jan 15, 2003
11:28 pm
141
Get your setUpPage() function to monitor the readyState of the SVG object. Although I'm not sure it changes state as expected. If readyState is good enough,...
diroussel <yahoo@...>
diroussel
Offline Send Email
Jan 21, 2003
12:48 pm
142
I want to call into a library that uses callbacks. So I want a test that does: function testMyMethod() { myMethod(useThisCallback); } function...
joelshellman <joel.sh...
joelshellman
Offline Send Email
Jan 29, 2003
7:15 pm
143
... /jsunit/tests/jsUnitTestLoadData.html and jsUnitTestLoadStaff.html are tests that require an asynchronous load of test documents before the body of the...
Curt Arnold
pretzllboy
Offline Send Email
Jan 30, 2003
2:19 am
144
Thanks. I discovered that workaround in the archives, but it's a real nuisance because that means I have to create a new test page for every call. I'm using...
Shellman, Joel
joelshellman
Offline Send Email
Jan 30, 2003
3:34 pm
145
I'm working on running a jsUnit test suite from ant and right now, I'm leaning toward Jorg's jsUnit package (for various reasons). It seems like it will work...
joelshellman <joel.sh...
joelshellman
Offline Send Email
Feb 7, 2003
8:50 pm
146
Helo Joel, ... I am a little confused. You indicate, that you're looking for my JsUnit version, but it seems that you're searching for a solution with Edward's...
Jörg Schaible
joehni
Offline Send Email
Feb 8, 2003
4:14 pm
147
I've just committed changes to build.xml, test-to-ecmascript.xsl and test-to-jsunit.xsl which generate tests that are designed to be run with JSUnit 1.3.3....
Curt Arnold
pretzllboy
Offline Send Email
Feb 10, 2003
7:34 am
148
... No, not correct. Someone suggested using: <target name="all"> <!-- we must test our javascript against internet explorer --> <exec executable="C:/Program...
Shellman, Joel
joelshellman
Offline Send Email
Feb 10, 2003
3:59 pm
149
Hello Joel, ... OK, now I see. Unfortunately I have no real solution for this. Basically I thought, ant would evaluate the return value to prove the success of...
Jörg Schaible
joehni
Offline Send Email
Feb 11, 2003
11:06 pm
150
How can I do a wait in a test in Jorg's jsUnit? I pop up a new window, but I need to wait until that new window is rendered before I proceed with my tests....
Shellman, Joel
joelshellman
Offline Send Email
Feb 18, 2003
6:04 pm
151
Hi Joel, ... did you try Automation? See Google for remote scripting the IE: "InternetExplorer.Application +reference". Running WSH and using Automation I can...
Jörg Schaible
joehni
Offline Send Email
Feb 19, 2003
1:41 am
152
Thank you very much for this info--that's exactly what I was working on yesterday. I'm still trying to figure out how to replace the ResultPrinter...
Shellman, Joel
joelshellman
Offline Send Email
Feb 19, 2003
4:56 pm
153
Hello Joel, ... yesterday. I'm still trying to figure out how to replace >the ResultPrinter easily--doesn't seem to be working the way I would expect. Well, I...
Jörg Schaible
joehni
Offline Send Email
Feb 20, 2003
1:38 am
154
Hi Joel, ... Did you find something in the meanwhile? I can only think of a script injection and a little applet i.e. add an applet tag at the body...
Jörg Schaible
joehni
Offline Send Email
Mar 1, 2003
1:31 am
155
... This is what I've done: We only have to support IE 5.5+ so I used xmlHttp to do a request to a servlet that would wait for a specified amount of time. It...
Shellman, Joel
joelshellman
Offline Send Email
Mar 3, 2003
4:53 pm
156
I checked with the moderator and he mentioned it would be okay for me to post this. We would like someone specifically with jsUnit experience so I thought it...
joelshellman <joelshe...
joelshellman
Offline Send Email
Mar 4, 2003
12:36 am
157
I played a little bit trying to get the Palm WebBrowser 2.0 simulator to run JSUnit, but didn't have much success. I'll also try the Internet Explorer 5.5 for...
Curt Arnold
pretzllboy
Offline Send Email
Mar 8, 2003
6:56 am
158
1. There is a problem on line 293 of JsUnitCore.js that raises an exception when displaying the test files in the browser. The following change will avoid the...
Curt Arnold
pretzllboy
Offline Send Email
Mar 14, 2003
6:42 am
159
... Yes, I've seen that cause problems and intended to submit this for the next release. if (top && top.xbDEBUG && top.xbDEBUG.on && top.testManager) ... The...
Bob Clary
bobclary2
Offline Send Email
Mar 14, 2003
12:55 pm
160
All, Has anyone tried testing client-side VbScript using JsUnit? I have created a simple class in VbScript: <script language="VBScript"> Class...
Turpin, Jay
jay_turpin
Offline Send Email
Mar 14, 2003
4:11 pm
161
... I've only tested with PDA simulators. I believe the browser on the Palm simulator has a 306x276 pixel content area. The Win CE emulator can be configured...
Curt Arnold
pretzllboy
Offline Send Email
Mar 15, 2003
3:34 pm
162
... Looks tolerable on the Palm simulator. However, the Palm simulator still does not apparently do anything when you press Run....
Curt Arnold
pretzllboy
Offline Send Email
Mar 18, 2003
6:27 am
163
Hello everyone, I tried to use JSUnit in Mozilla 1.3 to test a library I wrote. I got the JSUnit program setup, and it finds the page, but no unit tests. I...
Stephan Richter
strichter
Offline Send Email
Mar 30, 2003
1:38 am
164
A follow up: I figured out that Mozilla can only handle one script element per page (why? I dunno). Therefore, if I place scripts before the test scripts code,...
Stephan Richter
strichter
Offline Send Email
Mar 30, 2003
3:07 am
165
Hello, I'm using JsUnit for my testing, and it's great. However, I'm confused as to the correct usage of the "fail" function. I tried doing the following: ...
amanda_birmingham
amanda_birmi...
Offline Send Email
Apr 22, 2003
6:06 pm
166
Hi Amanda, ... Edward's JsUnit is throwing a JsUnitException instance. So you've to check in the catch statement for this type of object: try{ fail("Should...
Jörg Schaible
joehni
Offline Send Email
Apr 22, 2003
7:45 pm
167
jsunit, -- ó ÎÁÉÌÕÞÛÉÍÉ ÐÏÖÅÌÁÎÉÑÍÉ, Alexander mailto:stankevich@......
Alexander Stankevich
a_stankevich...
Offline Send Email
May 14, 2003
1:27 pm
168
... Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo....
Greeshma Premkumar
greeshmaprem...
Offline Send Email
May 20, 2003
6:24 am
169
I am new to Unit Testing and jsunit. Is there a tutorial site where I can learn how to apply jsunit to my ASP/Jscript application to achieve unit testing. ...
suepat272000
Offline Send Email
May 27, 2003
5:29 am
Messages 140 - 169 of 1225   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help