Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
431 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
2answers
77 views

haskell — is -ddump-simpl the best way to get a concrete type?

I had previously written a function that seems to work, but unfortunately I didn't write the code very nicely, and now have to figure it out again [that I'm modifying the monad transformer stack I'm ...
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 ...
3
votes
5answers
605 views

Is This a C++ Unit Test?

I am trying to formalize my programming practices in preparation to do it professionally (I have been doing it as a hobby for 18 years). Unfortunately they didn’t really teach us useful stuff in ...
2
votes
1answer
764 views

SQLAlchemy declarative concrete autoloaded table inheritance

I've an already existing database and want to access it using SQLAlchemy. Because, the database structure's managed by another piece of code (Django ORM, actually) and I don't want to repeat myself, ...
1
vote
5answers
87 views

Java - Can the children of an abstract class (the “extends”-ers) instantiate themselves via their parents abstract method?“ i.e. m = new this();”?

First things first, please be aware I am trying to express my question as best I can with my current knowledge and vocabulary, so please excuse this... I have an abstract class in which I want to ...
1
vote
1answer
152 views

Symfony concrete table inheritance problem

I am developing Symfony-Doctrine based application. I used Concrete Table Inheritance strategy.But now I faced with some problems. I have following tables: Product : has some properites Computer : ...
1
vote
1answer
283 views

Populating DataGridView using DataGridView.DataSource property and BindingSource

The following two code snippets populate a BindingSource which is later assigned to a DataGridView.DataSource. When the concrete class QuotesTool.LineItem is used (first snippet) the grid DOES ...
1
vote
1answer
201 views

Can I teach dynamic_cast<>() new tricks?

Is there a way in C++ to construct your class such that given a pointer to your class you can instruct dynamic_cast<>() how to cast to another class for which you are wrapping the implementation? ...
1
vote
2answers
307 views

Structuremap use different concrete type by object type

I have a default concrete type defined in a registry: ForRequestedType<IXRepository>() .TheDefaultIsConcreteType<CacheXRepository>(); The ChaceXRepository has the following ...
1
vote
4answers
577 views

In UML, do you have to show the concrete implementation of an abstract method?

I'm drawing some UML in which a concrete class inherits from an abstract class which defines a pure virtual method. Is it required to show this method in the concrete class as well? It's implied by ...
0
votes
0answers
124 views

Concrete 5 Theme: for Menu navigation

i am new to concrete 5, i search alot for theming of Menu (i.e: sub menu's) navigation with image icon and description but not found any related material. i have the following Html: <div ...
0
votes
1answer
40 views

Why can't .NET mock frameworks use new to hide non-virtual methods for non-sealed classes?

For example: public class ThirdPartyClass { public void DoSomething() { ... } } // Mock framework generated class public class MockThirdPartyClass : ThirdPartyClass { public new void ...
0
votes
2answers
47 views

Concrete Instance Methods Are Just as Bad as Static Methods for Testing, Right?

If method A() calls static method B(), this is bad because the two are tightly coupled, correct? But if, instead of calling B(), A() called a non-static method C() of some concrete class, this would ...
0
votes
1answer
626 views

What is the Youngs and shear modulus of reinforced concrete? [closed]

Does anybody know what are the values of shear modulus and Youngs Modulus of reinforced concrete? Kind Regards Daniel
0
votes
1answer
104 views

Pointing my domain to concrete5 folder

I have a domain name, and have installed concrete5 under my public_html folder. So it is public_html/concrete5.4.1 folder. Now how would I redirect my traffice to concrete5 folder ? That is when the ...
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(); } ...
0
votes
1answer
263 views

Concrete implementation of generic base class and extension method

The end goal for this post is to override the ToString() method of a concrete implementation of a generic base class while still being able to search the implementation using Linq flattening ...
-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 ...
-1
votes
3answers
370 views

Get concrete Type from Object DataSource and use this type variable in a cast operation

I have a public object DataSource {get;set} and a public string DisplayMember {get;set} The object can take everything like an IList or a CustomerListDataSet. I do not know what the user will set ...