Package org.jscsi.scsi.protocol.cdb

Examples of org.jscsi.scsi.protocol.cdb.ReadCapacity16


   @Test
   public void testReadCapacity16inMemory()
   {
      _logger.debug("********** READ CAPACITY 16 MEMORY **********");
      CDB cdb = new ReadCapacity16(32, false, 0);
      this.submitMemoryTask(cdb, cmdRef);
      verifyInputBufferCapacity16();
      cmdRef++;
   }
View Full Code Here


   @Test
   public void testReadCapacity16inFile()
   {
      _logger.debug("********** READ CAPACITY 16 FILE **********");
      CDB cdb = new ReadCapacity16(32, false, 0);
      this.submitFileTask(cdb, cmdRef);
      verifyInputBufferCapacity16();
      cmdRef++;
   }
View Full Code Here

TOP

Related Classes of org.jscsi.scsi.protocol.cdb.ReadCapacity16

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.