@Test
public void testGenerateValue() throws Exception {
ValueGenerator g = new MD5Generator();
Assert.assertNotNull(g.generateValue());
Assert.assertNotNull(g.generateValue("test"));
try {
g.generateValue(null);
fail("Exception not thrown");
} catch (OAuthSystemException e) {