You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2015/07/19 12:09:04 UTC

[jira] [Commented] (CAMEL-8293) Be more override-friendly in CamelTestSupport by returning interface type instead of concrete impl

    [ https://issues.apache.org/jira/browse/CAMEL-8293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14632764#comment-14632764 ] 

Claus Ibsen commented on CAMEL-8293:
------------------------------------

Looking into this, so you can do

{code}
    @Override
    protected Registry createRegistry() throws Exception {
        SimpleRegistry simple = createRegistry(SimpleRegistry.class);
        simple.put("beer", "yes");
        return simple;
    }
{code}

Notice the method that takes the type class.

> Be more override-friendly in CamelTestSupport by returning interface type instead of concrete impl
> --------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-8293
>                 URL: https://issues.apache.org/jira/browse/CAMEL-8293
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-test
>    Affects Versions: 2.14.1
>            Reporter: David J. M. Karlsen
>
> CamelTestSupport has a 
> protected JndiRegistry createRegistry()
> method.
> It would be better if it returned the Generic type Registry instead - that way you can override the method and return a SimpleRegistry for your tests without having to do this in createCamelContext() which defats createRegistry's purpose.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)