}
@Test
public void set_objectSourceScope_keyIsScope() throws Exception
{
ObjectSourceException re=null;
try
{
webObjectSource.set("objeCtSource", "v");
}
catch(ObjectSourceException e)
{
re=e;
}
Assert.assertTrue( (re.getMessage().startsWith("key \"objeCtSource\" is illegal")) );
}