struct TestIntentsShortcuts: AppShortcutsProvider {
   static var appShortcuts: [AppShortcut] {
      AppShortcut(
         intent: FindMovie(),
         phrases: [
            "Show me the movie \(\.$movie) in \(.applicationName)",
            "Show me \(\.$movie) in \(.applicationName)",
            "Open \(\.$movie) in \(.applicationName)",
            "Find the movie \(\.$movie) in \(.applicationName)"
         ],
         shortTitle: LocalizedStringResource("Show Movies"),
         systemImageName: "magnifyingglass.circle"
      )
   }
}