Help identify the pattern for reacting on updates
There’s an entity that gets updated from external sources. Update events are at random intervals. And the entity has to be processed once updated. Multiple updates may be multiplexed. In other words there’s a need for the most current state of entity to be processed.
Help identify the pattern for reacting on updates
There’s an entity that gets updated from external sources. Update events are at random intervals. And the entity has to be processed once updated. Multiple updates may be multiplexed. In other words there’s a need for the most current state of entity to be processed.
Contract / Project / Line-Item hierarchy design considerations
We currently have an application that allows users to create a Contract
. A contract can have 1 or more Project
. A project can have 0 or more sub-projects (which can have their own sub-projects, and so on) as well as 1 or more Line
. Lines can have any number of sub-lines (which can have their own sub-lines, and so on).
Where should I draw the line between unit tests and integration tests? Should they be separate?
I have a small MVC framework I’ve been working on. It’s code base definitely isn’t big, but it’s not longer just a couple of classes. I finally decided to take the plunge and start writing tests for it(yes, I know I should’ve been doing that all along, but it’s API was super unstable up until now)
Suggestions for connecting .NET WPF GUI with Java SE Server
BACKGROUND
We are building a Java (SE) trading application which will be monitoring market data and sending trade messages based on the market data, and also on user defined configuration parameters.
Are there well-known PowerShell coding conventions?
Are there any well-defined conventions when programming in PowerShell?
Microsoft Dev Centre accounts [closed]
Closed 11 years ago.
Exception Handling Frequency/Log Detail
I am working on a fairly complex .NET application that interacts with another application. Many single-line statements are possible culprits for throwing an Exception and there is often nothing I can do to check the state before executing them to prevent these Exceptions.
NUnit SetUp and TearDown
I have some experience in MS Test but new to NUnit.
How do I trust an off site application
I need to implement something similar to a license server. This will have to be installed off site at the customers’ location and needs to communicate with other applications at the customers’ site (the applications that use the licenses) and an application running in our hosting center (for reporting and getting license information).