I think, if it is truly unit testing, it is a bad design. Your unit/class has a dependency on time, if there is no way to mock out the time then the "unit" isn't a unit. To unit test you need to be able to influence all of the external dependencies that affect the flow of control. In practice this means that there is a class that is responsible for selecting the information you need that accepts some delegate that's responsible for the time. This might be a Calendar object or something similar.
If it is a complete module that you are testing, perhaps you are not unit testing. The same principle carries though, if time influences the output radically then date should be an optional input not only for testing, but because more often than not systems need to be run for a specific date. For some this might be speculative: but it is better practice not to refer to global state directly in modules deep in the system but to pass this state around. The difficulty in testing can turn into a difficulty in maintenance pretty easily. All that would need to happen would be for a customer to suggest a command to, say process batches (or whatever you're doing, for a particular day again because the system crashed. Burying the date deep, and possible multiple-times in the system when it is critical for the selecting logic can lead to greater maintenance later.
If your system has a great number of dependencies (is complex) you might want to consider a Container to manage Dependency Injection. These containers, often called IoC Containers allow the system to be written as loosely coupled objects that and these are "wired" together by the container through configuration of some kind.
