firebase_storage_mocks 0.5.1 copy "firebase_storage_mocks: ^0.5.1" to clipboard
firebase_storage_mocks: ^0.5.1 copied to clipboard

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

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

Usage #

A simple usage example: (assumes assets/someimage.png exists in project and is included in assets section of pubspec.yaml)

import 'package:firebase_storage_mocks/firebase_storage_mocks.dart';
import 'package:flutter/services.dart' show rootBundle;

main() async {
  final storage = MockFirebaseStorage();
  const filename = 'someimage.png';
  final storageRef = storage.ref().child(filename);
  final localImage = await rootBundle.load("assets/$filename");
  final task = await storageRef.putData(localImage.buffer.asUint8List());
  // Prints 'gs://some-bucket//someimage.png'.
  print(task.ref.fullPath);
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

35
likes
0
pub points
88%
popularity

Publisher

verified publisherwafrat.com

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

firebase_storage, flutter

More

Packages that depend on firebase_storage_mocks