how to test method that calls a service and passess in an object.
long AddFileDownloadEntry(FileDownloadEntry fde);
I understand how to unit test when there is some logic involved, but this service just passes in an object and the data in the object is inserted into the database.
Edit:
Sorry I wasn't clear , I'm trying to test the method in the service.