* aura:clientLibrary tag. ClientLibraryServiceImplTest is testing these ClientLibraryDef individually.
*
* @throws Exception
*/
public void testCommaSeparatedStringInNameWillNotResolve() throws Exception {
ClientLibraryService service = new ClientLibraryServiceImpl();
ClientLibraryDef clientLibrary = vendor.makeClientLibraryDef("UIPerf, UIPerfUi", null, ClientLibraryDef.Type.JS,
null, false, null, null);
String url = service.getResolvedUrl(clientLibrary);
assertNull("Expected null if a invalid library name was specified", url);
}