Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
13answers
757 views

Is it worth trying to write tests for the most tightly coupled site in the world?

Imagine that 90% of your job is merely to triage issues on a very massive, very broken website. Imagine that this website is written in the most tightly coupled, least cohesive PHP code you've ever ...
12
votes
6answers
1k views

Game Objects Talking To Each Other

What is a good way of dealing with objects and having them talk to each other? Up until now all my games hobby/student have been small so this problem was generally solved in a rather ugly way, which ...
2
votes
5answers
338 views

Software testing for a bare-metal system

I am writing a project in C++ for an embedded system with no OS support; almost no library support. Very bare-metal. Hence, a fair amount of my code is tightly coupled(e.g., software triggered ...
1
vote
3answers
44 views

Open sql connection in business service

Do you see it as tight coupling that my business service class opens a SqlConnection ? Actually a business service should not be aware of the concrete dataprovider?! public class UnitService: ...
1
vote
2answers
58 views

Tightly Coupled classes: what is better design in my situation

what is the better solution in my situation, how to design classes so they are not very coupled? I have an Library (API) which provides some functionality (for example, subscribe for streaming FX ...
1
vote
3answers
54 views

Help with debate on Separation of concerns (Data Access vs Business Logic)

I had a debate with my co-worker on whether certain logic belongs in the data access or business logic layer. The scenario is, the BLL needs some data to work with. That data primarily lives in ...
1
vote
1answer
88 views

Are self-described / auto-descriptive services loosely or tightly coupled in a SOA architecture?

I consider a self-described / auto-descriptive service as a good thing in a SOA architecture, since (almost) everything you know to call the service is present in the service contract (such a WSDL). ...
1
vote
1answer
479 views

Parent App access vs Events in Flex Modules

Inspired by this Flex question, is it seen as better practice to dispatch an event back to the parent app, as opposed to calling a method on the instance of the parent app, from within a module? To me ...
0
votes
0answers
28 views

Loose Coupling Between Static Classes

What are some common patterns and practices that can be followed in order to avoid thight coupling between static classes? I am developing a webservice following MSDN's Service Archetype and I have ...