toggle menu
zinc-grader
2024.01.99
jvm
switch theme
search in API
runner-api
/
dev.ust.zinc.grader.model.xunit
/
GTestXMLFile
GTest
XMLFile
data
class
GTestXMLFile
(
val
tests
:
Int
,
val
failures
:
Int
,
val
disabled
:
Int
,
val
errors
:
Int
,
val
timestamp
:
Instant
,
val
time
:
Duration
,
val
name
:
String
,
val
testsuites
:
List
<
GTestXMLFile.TestSuite
>
)
Members
Members & Extensions
Constructors
GTest
XMLFile
Link copied to clipboard
constructor
(
tests
:
Int
,
failures
:
Int
,
disabled
:
Int
,
errors
:
Int
,
timestamp
:
Instant
,
time
:
Duration
,
name
:
String
,
testsuites
:
List
<
GTestXMLFile.TestSuite
>
)
Types
Companion
Link copied to clipboard
object
Companion
Test
Case
Link copied to clipboard
data
class
TestCase
(
val
name
:
String
,
val
status
:
String
,
val
time
:
Duration
,
val
classname
:
String
,
val
failures
:
List
<
XUnitReport.AbnormalResult
>
)
Test
Suite
Link copied to clipboard
data
class
TestSuite
(
val
name
:
String
,
val
tests
:
Int
,
val
failures
:
Int
,
val
disabled
:
Int
,
val
errors
:
Int
,
val
time
:
Duration
,
val
testcases
:
List
<
GTestXMLFile.TestCase
>
)
Properties
disabled
Link copied to clipboard
val
disabled
:
Int
errors
Link copied to clipboard
val
errors
:
Int
failures
Link copied to clipboard
val
failures
:
Int
name
Link copied to clipboard
val
name
:
String
tests
Link copied to clipboard
val
tests
:
Int
testsuites
Link copied to clipboard
val
testsuites
:
List
<
GTestXMLFile.TestSuite
>
time
Link copied to clipboard
val
time
:
Duration
timestamp
Link copied to clipboard
val
timestamp
:
Instant
Functions
to
Report
Unit
Link copied to clipboard
fun
GTestXMLFile
.
toReportUnit
(
)
:
XUnitReport