The fake-data tag has no wiki summary.
9
votes
6answers
259 views
How can I make sure someone is not sending fake data?
I've been reading Stack Overflow for quite some time, but this is my first posted question.
I have this tracking program written in C# which collects information about local computer usage and sends ...
5
votes
1answer
497 views
Faker is producing duplicate data when used in factory_girl
I'm trying to populate some fake data into a factory using the Faker gem:
Factory.define :user do |user|
user.first_name Faker::Name::first_name
user.last_name Faker::Name::last_name
...
5
votes
3answers
730 views
C# - A good library to fake Time.Now?
In order to Unit-Test a feature, I need to fake DateTime.Now. Something like:
SupposeNowIs(new DateTime(..));
I can either use a third library that does it, or write my own little class.
What do ...
4
votes
3answers
761 views
Mock/fake test data generator into NET classes
Does anyone know of a test data generator that will create the code to populate a .NET collection class which can then be copied into a unit test?
Searching this site, all the tools mentioned seem to ...
3
votes
1answer
481 views
How to test a class that makes HTTP request and parse the response data in Obj-C?
I Have a Class that needs to make an HTTP request to a server in order to get some information. For example:
- (NSUInteger)newsCount {
NSHTTPURLResponse *response;
NSError *error;
...
2
votes
3answers
1k views
How to Fake a AsyncToken return in ActionScript 3
Using Parsley,
I have a service that I access through a
[Command(selector='list')]
public function getRssFeed( msg:RssEvent ):AsyncToken
{
return service.list() as AsyncToken;
}
when I point to the ...
1
vote
2answers
341 views
Create fake UDP traffic
I have to write a UDP client. Unfortunately, the source system is not always available
Is there a simple tool out there that I can use to create a fake UDP server/traffic on my machine?
1
vote
1answer
452 views
MySQL Workbench: Generate a bunch of rows?
I have a MySQL workbench model that I've used to generate a schema. To play around with it, I'd like a bunch of fake data. Is there an easy way to generate this, or must I do it by hand?
0
votes
0answers
101 views
Creating a fake image for a Ckeditor cutom Plugin
I am developing a plugin for video embedding, I put this code when the plugin dialog OK button is clicked.
embedCode = '<iframe title="YouTube video player" class="youtube-player" type="text/html" ...
0
votes
3answers
290 views
asp.net mvc - How to create fake test objects quickly and efficiently
I'm currently testing the controller in my mvc app and I'm creating a fake repository for testing. However I seem to be writing more code and spending more time for the fakes than I do on the actual ...