* Test method for {@link org.apache.niolex.notify.Notify#getProperty(org.apache.niolex.notify.ByteArray)}.
*/
@Test
public void testGetPropertyByteArray() {
Notify notify = App.instance().getNotify("/notify/test/tmp");
byte[] v = notify.getProperty(new ByteArray("love".getBytes()));
assertEquals(new String(v), "lex");
}