• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.onboarding.bedsteadonboarding.data
2 
3 /** In-memory representation of the per test configuration */
4 @JvmInline value class TestConfigData(val testNodes: List<NodeData>)
5 
6 /** Represents a unique identifier of a node's contract which is allowed to execute in a test. */
7 @JvmInline value class NodeData(val allowedContractIdentifier: String)
8