Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
531 views

What is a Factory Design Pattern in PHP?

This confuses me, in the most simplest terms what does it do? Pretend you are explaining to your mother or someone almost please.
6
votes
4answers
209 views

Understanding Factories and should I use them?

I have never used Factories before for the simple reason, I don't understand when I need them. I have been working on a little game in my spare time, and I decided to implement FMOD for the sound. I ...
4
votes
1answer
131 views

How can I make this simple C# generics factory work?

I have this design: public interface IFactory<T> { T Create(); T CreateWithSensibleDefaults(); } public class AppleFactory : IFactory<Apple> { ... } public class BananaFactory : ...
3
votes
1answer
765 views

Symfony 1.4.6 loading factories.yml configuration from task

I have the following configuration set in my factories.yml file... all: mailer: param: transport: class: Swift_SendmailTransport param: command: ...
2
votes
1answer
112 views

Is there any rails factory to help me test non persistant models?

I'm working on a rails application on which the models are plain ruby classes without any persistence layer (no active record or similar). I want to test these models from RSpec with all the niceties ...
2
votes
1answer
875 views

How do you create RoR Factory associations with accepts_nested_attributes_for?

As Anton points out (thanks Anton!) my problem is Association Caching in the tests and it seems like I did correctly create the nested_attribute in the Factory. The correct syntax is: Factory.define ...
2
votes
1answer
2k views

Rails has_and_belongs_to_many is confusing me with fixtures and factories

General Confusion I have bands which can have 3 genres. I read in a previous SO post that the proper way to handle this is a couple steps: 1) In band.rb has_and_belongs_to_many :genres 2) Create a ...
2
votes
2answers
472 views

Pluses and minuses of using Factories in a Rails test suite?

I'm currently looking at a hefty Rails test suite. It's nothing I can get into specifics about, but the run time for the entire suite (unit/functional/some integration) can run upward of 5 minutes. ...
1
vote
0answers
120 views

Best practice - Builder inside an entity factory

I was wondering: How legitimate and what the objections would be to place a builder inside an entity factory? Whether these should be called from a manager. I am not one hundred percent convinced ...
1
vote
1answer
502 views

Rails: Factories and Associations in Functional Tests

I'm trying to figure out why this doesn't work. Let's say you three models, User, Foo and Bar. In order for a bar to be created the user must first create and validate a foo object. Class User ...
0
votes
1answer
44 views

With Guice how to bind multiple instances of a parameterized class when implementation use generics?

I was trying to avoid using my own factory in this case, but I couldn't found a way of doing this with Guice, maybe because I'm new using guice ;) I have this interface to convert type E into type D ...
0
votes
1answer
37 views

Creating a Factory association that defaults to nil?

Using the FactoryGirl gem, inside the factories.rb file, how can I create a factory with an association that defaults to nil? I am thinking something along these lines: Factory.define :user do ...
0
votes
1answer
230 views

using Autofac in Factory method

I am bit confused I have a snippet on domainevents where ` public class StructureMapDomainEventHandlerFactory : IDomainEventHandlerFactory { public ...
0
votes
0answers
29 views

Issue with factories data using shoulda

Hi i was getting error when running test file I have data like this : factories.rb: Factory.define :Procedure do |p| p.sequence(:name) {|n| "foo#{n}"} p.procedure_group_id "1" end ...
0
votes
2answers
263 views

Factories with sinatra and rspec possible?

I wondered if anyone had any success with using any of the facorty testing tools out there with Sinatra, Sequel and RSpec?
0
votes
1answer
367 views

Symfony web debug tool bar disappears when using sfNoLogger

Why does the web debug tool bar disappear when I use sfNoLogger in the factories.yml: dev: logger: class: sfNoLogger param: level: err loggers: ~ When I remove these lines ...
0
votes
0answers
84 views

mixing factories and fixtures, should I and would I want to?

I use factories for most of my tests and factory girl to create test data. Most of it works fine except I have a Model that uses geokit to geocode locations and it will fail if it get's a location ...
0
votes
1answer
122 views

symfony: Own cache class for config cache

I was just able to write my own view cache class and activate it over factories.yml. Now I'm wondering how I can do the same for the config cache. Edit: Fist I thought symfony will automatically use ...
0
votes
2answers
113 views

Cannot access seeds in my factories when running Rails unit tests

I have factories that include some setup data. For example: Factory.define :event do |event| event.name { Factory.next(:email) } event.blurb "Test event blurb" event.association(:owner, ...
0
votes
2answers
152 views

Object Factory Question - using database query information to create objects

I have several objects, like products, order, etc. When I get information from my database I take a row and create one of the types of objects. I then work with that object created. I read this is ...
0
votes
1answer
64 views

Generic factorized data helpers (system.data.commons) vs especialized data helpers (sql server) performance?

I'm planning to improve the performance of some applications. We generally use factored datahelpers (using System.Data.Common, but we are thinking to specialize some applications that are always going ...
0
votes
3answers
220 views

C++ Templates and Factories

I've been playing with C++ for a few years now, and want to become adept at using and factories. Are there some good web tutorials and/or textbooks that cover this well? I started programming prior ...