|
What kind of execution rate do you aim for with your unit tests (# test per second)? How long is too long for an individual unit test?
I'd be interested in knowing if people have any specific thresholds for determining whether their tests are too slow...
Started by David Tchepak on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Then you might....
However, I still try to make them or more per test...
The dangerI tend to focus more on readability of my tests than speed.
About test execution speed until this is something that starts to get annoying.
|
|
Hi,
I'd like to create a speed test to test the connection. What I would like is a 15sec download which then gives me the average download speed.
Anyone knows how to create this? or has a better idea to make a speed test?
Thanks for reading!
Started by Aussie Ausbourne on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Setup.exe", tempfile); sw.Stop(); FileInfo fileInfo = new FileInfo(tempfile); long speed("File size: {0}", fileInfo.Length.ToString("N0")); Console.WriteLine("Speed: {0} bps.
|
|
How can i test webpage/app rendering for slow speed connection?
Started by Babiker on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Like YSlow and Google Page Speed will give you suggestions about how to speed up the page both loading.
|
Ask your Facebook Friends
|
How can I test the speed of a LAN? I hope there is something baked into Windows to do this, because I am unable to install any third-party products.
Started by Josh Stodola on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You can also open a command prompt and run ping.exe to ping other computers on the network larger packet sizes to... .
If you want to test the speed between two PCs speed.
But that doesn't tell you the whole story.
At 10/100/1000 mbit.
|
|
What is the proper way to compare 2 times in Python in order to speed test a section of code? I tried reading the API docs. I'm not sure I understand the timedelta thing.
So far I have this code:
from datetime import datetime tstart = datetime.now() print...
Started by tyndall on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
From datetime import datetime tstart = datetime.now() # code to speed test tend.
From datetime import datetime tstart = datetime.now() # code to speed test tend = datetime.now() print the time detla...
|
|
We have an Oracle database server specifically for our unit tests to run against. Is there a way to tune Oracle specifically for this kind of purpose? As the data is constantly being thrown away (since it's just test data). I wonder if there is a way ...
Started by Benju on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
ALTER on the same server as your ....
Choose to either the same total amount of time, but you'll "feel" it less if you rebuild them after the test run.
You can incorporate rebuilding of your table indexes as part of the test run.
Results.
|
|
Before we sign up for any hosting company to host our app or pages, i think it probably is good to find out the speed so that if it is too slow, we may as well pay a little more to find a better place to put our app. the question is, is there a way to...
Started by Jian Lin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Think that you can generally find out the speed of a site as that is a function of the route to your the speed may appear slow even if they are running the fastest type of link..
|
|
Are the popular speed tests (cable, dsl, etc) that are available accurate? if so, how? Also, it seems that they only measure download speed of one file and not responsiveness, latency, robustness, etc. Does anyone know how it should be measured? any links...
Started by ra170 on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at superuser):
If your ISP speed test....
Http://www.internetfrog.com/mypc/speedtest/ is another speed test tool you can try.
In addition to using just a speed test often it's helpful to find out packet loss .
Or other services.
|
|
While developing a Grails 1.0.5 app I'm appaled at how slow the grails test-app command is. Even though the actual tests take just ~10 seconds, the whole execution adds up to
real 1m26.953s user 0m53.955s sys 0m1.860s
This includes grails bootstrapping...
Started by Robert Munteanu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Just run
grails interactive
Then type
test-app
The first performance penalty)?
This might not be a possibility for you right now, but the speed improvements workiing on one or the....
Interactive mode to speed up your test runs.
|
|
Does anybody know of any internal intranet bandwidth test applications I can install on our internal servers?
I would like to test the speed of our WAN links like those online boradband speedometers do.
We run IIS7 on Windows 2008.
Started by Ryan Michela on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
I like NDT ( http WAN would be a fairly simple way to test, assuming that your WAN infrastructure isn't so fast buddies always likes to say....
The same company that makes those speed test apps, Ookla , also has a free version .
|