Package sagan.guides

Examples of sagan.guides.DefaultGuideMetadata


    @Before
    public void setup() {
        MockitoAnnotations.initMocks(this);
        controller = new TutorialController(guides);
        guide = new Tutorial(new DefaultGuideMetadata("my-org", "rest", "tut-rest", ""), guides, guides);
    }
View Full Code Here


    public void setup() {
        MockitoAnnotations.initMocks(this);
        controller = new GettingStartedGuideController(guides);
        model = new ExtendedModelMap();
        guide = new GettingStartedGuide(
                new DefaultGuideMetadata("my-org", "rest-service", "gs-rest-service", ""), guides, guides);
    }
View Full Code Here

TOP

Related Classes of sagan.guides.DefaultGuideMetadata

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.