Test class
Constructors
-
Test.new({required int id, required String name, required int suiteID, required List<int> groupIDs, int? line, int? column, String? url, int? rootLine, int? rootColumn, String? rootUrl})
-
-
Test.fromJson(Map<String, dynamic> json)
-
Factory constructor for creating a
Test
instance from a JSON map.
factory
Properties
-
column
↔ int?
-
The (1-based) column on which the test was defined, or
null
.
getter/setter pair
-
groupIDs
↔ List<int>
-
The IDs of groups containing this test, in order from outermost to innermost.
getter/setter pair
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
id
↔ int
-
An opaque ID for the test.
getter/setter pair
-
line
↔ int?
-
The (1-based) line on which the test was defined, or
null
.
getter/setter pair
-
name
↔ String
-
The name of the test, including prefixes from any containing groups.
getter/setter pair
-
rootColumn
↔ int?
-
The (1-based) column in the original test suite from which the test originated.
getter/setter pair
-
rootLine
↔ int?
-
The (1-based) line in the original test suite from which the test originated.
getter/setter pair
-
rootUrl
↔ String?
-
The URL for the original test suite in which the test was defined.
getter/setter pair
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
suiteID
↔ int
-
The ID of the suite containing this test.
getter/setter pair
-
url
↔ String?
-
The URL for the file in which the test was defined, or
null
.
getter/setter pair
Methods
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson()
→ Map<String, dynamic>
-
Method to convert a
Test
instance into a JSON map.
-
toString()
→ String
-
A string representation of this object.
inherited