• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.onboarding.bedsteadonboarding.annotations
2 
3 /**
4  * Mark that the test will allow the given array of nodes to be executed. Nodes not listed here will
5  * not be executed and when attempted will mark the end of execution of the process under test.
6  *
7  * @property nodes the list of the nodes which are allowed to execute.
8  */
9 annotation class TestNodes(val nodes: Array<TestSingleNode>)
10