canResolveChildren property

bool get canResolveChildren

Indicates whether this test item may have children discovered by resolving.

If true, this item is shown as expandable in the Test Explorer view and expanding the item will cause {@link TestController.resolveHandler} to be invoked with the item.

Default to false.

Implementation

_i2.bool get canResolveChildren => _i5.getProperty(
      this,
      'canResolveChildren',
    );
set canResolveChildren (bool value)

Implementation

set canResolveChildren(_i2.bool value) {
  _i5.setProperty(
    this,
    'canResolveChildren',
    value,
  );
}