Package com.p6spy.engine.spy

Examples of com.p6spy.engine.spy.P6SpyLoadableOptions.unSetRealDataSource()


    opts.unSetJNDIContextProviderURL();
    Assert.assertNull(opts.getJNDIContextProviderURL());
   
    opts.setRealDataSource("fooDS");
    Assert.assertEquals("fooDS", opts.getRealDataSource());
    opts.unSetRealDataSource();
    Assert.assertNull(opts.getRealDataSource());
   
    opts.setRealDataSourceClass("fooDSClass");
    Assert.assertEquals("fooDSClass", opts.getRealDataSourceClass());
    opts.unSetRealDataSourceClass();
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.