A testbed is a platform for experimentation of large development projects. Testbeds allow for rigorous, transparent, and replicable testing of new technologies or code in an isolated environment.
0
votes
1answer
33 views
How can I make Box2D create only one instance of a body?
I only called the body->CreateFixture(&fixtureDef) once but the Testbed keeps on creating bodies. Here is my code:
#ifndef FOOTEST_H
#define FOOTEST_H
#define DEGTORAD 0.0174532925199432957f
...
0
votes
0answers
47 views
How to Automate multi-environment Deployment
We have 4 environments : DEV, TEST , STAGING and PROD. Usually all new releases are manually deployed on each environment.This has resulted in configuration mismatch across environments due to ...
0
votes
1answer
262 views
LIBGDX Newest Testbed for Box2d
I'm testing the newest Box2d Testbed using Libgdx. It appears they aren't working and need to know if anyone else is having the same issue(s). The first one is called Conveyor Belt, ...
0
votes
0answers
56 views
gae python changing datastore in testing proces
I solve the problem:
I'm trying to test my app using testbed and webtest. And I want to see how handler method changing my datastore. Then after I start testing, I initialise MyModel instance object ...
0
votes
1answer
40 views
does the app engine capability_stub for unit testing allow disabling services?
When I was looking at the source code for capability_stub.py in app engine's testbed framework, I saw a comment stating that every service was always enabled. Now, is there a way to simmulate certain ...
1
vote
2answers
171 views
Data generation for QA tests
This question is kind of general and not very specific.
We have a java project that uses Oracle database. We are currently using SoapUI tool for the QA tests. Each test needs some data to exist on the ...
1
vote
0answers
100 views
How to avoid the overhead of DummyNet pipes [closed]
I am working on a project where I would like to emulate latencies like nodes that are located in diffrent countries. To be more specific I want to emulate the PlanetLab system in a LAN using DummyNet. ...
1
vote
1answer
208 views
Testbed stub for Google App Engine 'search'
I am trying to test Google App Engine's new full text search functionality in Python with the development appserver.
Is there a stub for the search that allows one to test it with the testbed local ...
1
vote
2answers
330 views
Google App Engine os.environ changes require module reload
I was trying to change the os.environ dict to simulate a logged in user on Google App Engine, as documented at http://stackoverflow.com/a/6230083/1241454.
from google.appengine.api import users
...
3
votes
1answer
93 views
Regular Expressions Testbed
I am currently attempting to implement a regular expression engine. (Yes, for fun. Go fig.)
I am working from this site for general algorithmic approach: http://swtch.com/~rsc/regexp/regexp1.html
...
2
votes
2answers
163 views
unit testing gae with login setting in app.yaml
I'm unit testing a google app engine app that uses the login setting in the app.yaml file. E.g.,
- url: /profile
script: main.py
login: required
I'm using testbed, nose, nose-gae, and webtest ...
5
votes
2answers
687 views
Google App Engine set up a user when using testbed
I'm using the GAE testbed service and when I run users.get_current_user() I get None i.e.
>>> import sys
>>> sys.path.append("/usr/local/google_appengine") # for Mac OS X
...

