• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.airbnb.lottie.snapshots
2 
3 /**
4  * Implement this and add it to the list of tests cases in [LottieSnapshotTest] to create a new set of snapshot tests.
5  * Refer to existing snapshot tests as a reference.
6  */
7 interface SnapshotTestCase {
runnull8     suspend fun SnapshotTestCaseContext.run()
9 }