Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 608 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 608 Bytes

Mocks for Firebase Storage. Use this package to write unit tests involving Firebase Storage.

Usage

A simple usage example:

import 'package:firebase_storage_mocks/firebase_storage_mocks.dart';

main() {
  final storage = MockFirebaseStorage('someimage.png');
  final storageRef = storage.ref().child(filename);
  final image = File(filename);
  await storageRef.putFile(image);
  // Prints 'gs://some-bucket//someimage.png'.
  print(task.snapshot.ref.fullPath);
}

Features and bugs

Please file feature requests and bugs at the issue tracker.