Package org.jscsi.scsi.protocol.cdb

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


   @Test
   public void testReadCapacity10inMemory()
   {
      _logger.debug("********** READ CAPACITY 10 MEMORY **********");
      CDB cdb = new ReadCapacity10(false, 0);
      this.submitMemoryTask(cdb, cmdRef);
      verifyInputBufferCapacity10();
      cmdRef++;
   }
View Full Code Here


   @Test
   public void testReadCapacity10inFile()
   {
      _logger.debug("********** READ CAPACITY 10 FILE **********");
      CDB cdb = new ReadCapacity10(false, 0);
      this.submitFileTask(cdb, cmdRef);
      verifyInputBufferCapacity10();
      cmdRef++;
   }
View Full Code Here

TOP

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

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.