Package org.nasutekds.server.plugins

Examples of org.nasutekds.server.plugins.NullPlugin


   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for add operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseAdd() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseAddOperation) null);
  }
View Full Code Here


   * exception for bind operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseBind()
  {
    new NullPlugin().doPreParse((PreParseBindOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for compare operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseCompare() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseCompareOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for delete operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseDelete() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseDeleteOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for extended operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseExtended() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseExtendedOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for modify operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseModify() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseModifyOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for modify DN operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseModifyDN() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseModifyDNOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreParse</CODE> method throws an
   * exception for search operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseSearch() throws CanceledOperationException {
    new NullPlugin().doPreParse((PreParseSearchOperation) null);
  }
View Full Code Here

   * exception for unbind operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseUnbind()
  {
    new NullPlugin().doPreParse((PreParseUnbindOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for add operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationAdd() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationAddOperation) null);
  }
View Full Code Here

TOP

Related Classes of org.nasutekds.server.plugins.NullPlugin

Copyright © 2018 www.massapicom. 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.