StoreFile() public method

public StoreFile ( string filename, byte bytes ) : void
filename string
bytes byte
return void
        public void WhenStoreFileInvokedWithValidArguments_AttachmentIsCreatedInRaven()
        {
            Byte[] fileBytes = new Byte[] { 3,1,4,1,5,9};
            String filename = "images/mySuperDuperFile";
            RavenFileStorageService storage = new RavenFileStorageService(this.Store);

            storage.StoreFile(filename, fileBytes);

            var retrievedAttachment = this.Store.DatabaseCommands.GetAttachment(filename);
            Assert.AreEqual(fileBytes, retrievedAttachment.Data);
        }