Tagged Questions
6
votes
2answers
1k views
c# Mocking Interface members of a concrete class with Moq
I have an interface ITransaction as follows:
public interface ITransaction {
DateTime EntryTime { get; }
DateTime ExitTime { get; }
}
and I have a derived class PaymentTransaction ...
4
votes
4answers
430 views
C#: Method to return object whose concrete type is determined at runtime?
I'm thinking about designing a method that would return an object that implements an interface but whose concrete type won't be know until run-time. For example suppose:
ICar
Ford implements ICar
...
3
votes
3answers
301 views
Unit Testing: coding to interfaces?
Currently my project is composed of various concrete classes. Now as I'm getting into unit testing it looks like I'm supposed to create an interface for each and every class (effectively doubling the ...
3
votes
6answers
1k views
Finding the Concrete Type behind an Interface instance
To cut a long story short I have a C# function that performs a task on a given Type that is passed in as an Object instance. All works fine when a class instance is passed in. However, when the object ...
0
votes
2answers
164 views
PHP: Abstract method within an interface
why cannot I declare an abstract method within an interface? This is my code. Thank you.
<?php
interface Connection {
public abstract function connect();
public function getConnection();
}
...
-1
votes
1answer
29 views
What is the benefit of mocking an interface instead of a concrete class
Is there a benefit in mocking a concrete class vs an interface?
sample:
In my CustomerService class I call the CustomerDataProvider like
customerDataProvider.GetCustomers();
customerDataProvider ...