Examples of TXspf


Examples of com.pugh.sockso.templates.TXspf

        super.init( protocol, "xspf" );
    }

    @Override
    public PlaylistTemplate getPlaylistTemplate() {
        return new TXspf();
    }
View Full Code Here

Examples of com.pugh.sockso.templates.TXspf

        final Request req = createNiceMock( Request.class );
       
        final Server s = createNiceMock( Server.class );
       
        final TestResponse res = new TestResponse();
        final TXspf tpl = new TXspf();
        final Track track = TestUtils.getTrack();
        final String protocol = "hTTppTT";
       
        tpl.setRequest( req );
        tpl.setProtocol( protocol );
        tpl.setTracks( new Track[] {track} );
        tpl.setProperties( new StringProperties() );
       
        res.showTemplate( tpl.makeRenderer() );
       
        final String data = res.getOutput();
       
        assertTrue( data.length() > 0 );
        assertTrue( data.contains(track.getName()) );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.