@kitware/vtk.js 19.2.11 → 19.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,8 +2,8 @@ import macro from '../../macros.js';
2
2
  import vtkBufferObject from './BufferObject.js';
3
3
  import { ObjectType } from './BufferObject/Constants.js';
4
4
  import { Representation } from '../Core/Property/Constants.js';
5
- import { k as equals, m as inverse, g as exactEquals } from '../../vendor/gl-matrix/esm/vec3.js';
6
- import { p as fromRotationTranslationScale } from '../../vendor/gl-matrix/esm/mat4.js';
5
+ import { w as equals, x as inverse, g as exactEquals } from '../../vendor/gl-matrix/esm/vec3.js';
6
+ import { q as fromRotationTranslationScale } from '../../vendor/gl-matrix/esm/mat4.js';
7
7
  import { c as create } from '../../vendor/gl-matrix/esm/quat.js';
8
8
 
9
9
  var vtkErrorMacro = macro.vtkErrorMacro; // ----------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
2
2
  import { i as identity, b as mat3 } from '../../vendor/gl-matrix/esm/mat3.js';
3
- import { i as identity$1, j as transpose, q as mat4 } from '../../vendor/gl-matrix/esm/mat4.js';
3
+ import { i as identity$1, j as transpose, p as mat4 } from '../../vendor/gl-matrix/esm/mat4.js';
4
4
  import { t as transformMat4 } from '../../vendor/gl-matrix/esm/vec3.js';
5
5
  import { setGet, obj, newInstance as newInstance$1, vtkErrorMacro as vtkErrorMacro$1 } from '../../macros.js';
6
6
  import vtkHelper from './Helper.js';
@@ -18,7 +18,7 @@ import { v as vtkVolumeFS } from './glsl/vtkVolumeFS.glsl.js';
18
18
  import { registerOverride } from './ViewNodeFactory.js';
19
19
  import { i as identity, m as multiply, g as invert } from '../../vendor/gl-matrix/esm/mat4.js';
20
20
  import { i as identity$1, m as multiply$1 } from '../../vendor/gl-matrix/esm/mat3.js';
21
- import { s as set, l as length, t as transformMat4, n as normalize, b as scale, o as divide, p as transformMat3, d as dot } from '../../vendor/gl-matrix/esm/vec3.js';
21
+ import { s as set, l as length, t as transformMat4, n as normalize, b as scale, k as divide, m as transformMat3, d as dot } from '../../vendor/gl-matrix/esm/vec3.js';
22
22
 
23
23
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
24
24
 
@@ -5,7 +5,7 @@ import vtkWebGPUFullScreenQuad from './FullScreenQuad.js';
5
5
  import vtkWebGPUUniformBuffer from './UniformBuffer.js';
6
6
  import { registerOverride } from './ViewNodeFactory.js';
7
7
  import { i as identity } from '../../vendor/gl-matrix/esm/mat4.js';
8
- import { b as scale, j as add, q as sub, r as len } from '../../vendor/gl-matrix/esm/vec3.js';
8
+ import { b as scale, j as add, o as sub, p as len } from '../../vendor/gl-matrix/esm/vec3.js';
9
9
 
10
10
  var vtkDebugMacro = vtkDebugMacro$1;
11
11
  var clearFragTemplate = "\n//VTK::Renderer::Dec\n\n//VTK::Mapper::Dec\n\n//VTK::TCoord::Dec\n\n//VTK::RenderEncoder::Dec\n\n//VTK::IOStructs::Dec\n\n[[stage(fragment)]]\nfn main(\n//VTK::IOStructs::Input\n)\n//VTK::IOStructs::Output\n{\n var output: fragmentOutput;\n\n var computedColor: vec4<f32> = mapperUBO.BackgroundColor;\n\n //VTK::RenderEncoder::Impl\n return output;\n}\n"; // ----------------------------------------------------------------------------
@@ -27,7 +27,7 @@ var vtkErrorMacro = vtkErrorMacro$1; // Vertices
27
27
  // 4: 011
28
28
  // 5: 111
29
29
 
30
- var vtkWebGPUStickMapperVS = "\n//VTK::Renderer::Dec\n\n//VTK::Mapper::Dec\n\n//VTK::Color::Dec\n\n//VTK::IOStructs::Dec\n\n[[stage(vertex)]]\nfn main(\n//VTK::IOStructs::Input\n)\n//VTK::IOStructs::Output\n{\n let offsetsArray: array<vec3<f32>, 12> = array<vec3<f32>, 12>(\n vec3<f32>(-1.0, -1.0, -1.0),\n vec3<f32>(1.0, -1.0, -1.0),\n vec3<f32>(1.0, -1.0, 1.0),\n\n vec3<f32>(-1.0, -1.0, -1.0),\n vec3<f32>(1.0, -1.0, 1.0),\n vec3<f32>(-1.0, -1.0, 1.0),\n\n vec3<f32>(-1.0, -1.0, 1.0),\n vec3<f32>(1.0, -1.0, 1.0),\n vec3<f32>(1.0, 1.0, 1.0),\n\n vec3<f32>(-1.0, -1.0, 1.0),\n vec3<f32>(1.0, 1.0, 1.0),\n vec3<f32>(-1.0, 1.0, 1.0)\n );\n\n var output : vertexOutput;\n\n var vertexVC: vec4<f32> = rendererUBO.SCVCMatrix * mapperUBO.BCSCMatrix * vec4<f32>(vertexBC.x, vertexBC.y, vertexBC.z, 1.0);\n\n //VTK::Color::Impl\n\n // compute the projected vertex position\n output.centerVC = vertexVC.xyz;\n output.radiusVC = radiusMC;\n output.lengthVC = length(orientMC);\n output.orientVC = (rendererUBO.WCVCNormals * vec4<f32>(normalize(orientMC), 0.0)).xyz;\n\n // make sure it is pointing out of the screen\n if (output.orientVC.z < 0.0)\n {\n output.orientVC = -output.orientVC;\n }\n\n // make the basis\n var xbase: vec3<f32>;\n var ybase: vec3<f32>;\n var dir: vec3<f32> = vec3<f32>(0.0,0.0,1.0);\n if (rendererUBO.cameraParallel == 0u)\n {\n dir = normalize(-vertexVC.xyz);\n }\n if (abs(dot(dir,output.orientVC)) == 1.0)\n {\n xbase = normalize(cross(vec3<f32>(0.0,1.0,0.0),output.orientVC));\n ybase = cross(xbase,output.orientVC);\n }\n else\n {\n xbase = normalize(cross(output.orientVC,dir));\n ybase = cross(output.orientVC,xbase);\n }\n\n\n var vertIdx: u32 = input.vertexIndex % 12u;\n var offsets: vec3<f32> = offsetsArray[vertIdx];\n\n vertexVC = vec4<f32>(vertexVC.xyz +\n output.radiusVC * offsets.x * xbase +\n output.radiusVC * offsets.y * ybase +\n 0.5 * output.lengthVC * offsets.z * output.orientVC, 1.0);\n\n output.vertexVC = vertexVC;\n\n //VTK::Position::Impl\n\n return output;\n}\n"; // ----------------------------------------------------------------------------
30
+ var vtkWebGPUStickMapperVS = "\n//VTK::Renderer::Dec\n\n//VTK::Mapper::Dec\n\n//VTK::Color::Dec\n\n//VTK::IOStructs::Dec\n\n[[stage(vertex)]]\nfn main(\n//VTK::IOStructs::Input\n)\n//VTK::IOStructs::Output\n{\n var offsetsArray: array<vec3<f32>, 12> = array<vec3<f32>, 12>(\n vec3<f32>(-1.0, -1.0, -1.0),\n vec3<f32>(1.0, -1.0, -1.0),\n vec3<f32>(1.0, -1.0, 1.0),\n\n vec3<f32>(-1.0, -1.0, -1.0),\n vec3<f32>(1.0, -1.0, 1.0),\n vec3<f32>(-1.0, -1.0, 1.0),\n\n vec3<f32>(-1.0, -1.0, 1.0),\n vec3<f32>(1.0, -1.0, 1.0),\n vec3<f32>(1.0, 1.0, 1.0),\n\n vec3<f32>(-1.0, -1.0, 1.0),\n vec3<f32>(1.0, 1.0, 1.0),\n vec3<f32>(-1.0, 1.0, 1.0)\n );\n\n var output : vertexOutput;\n\n var vertexVC: vec4<f32> = rendererUBO.SCVCMatrix * mapperUBO.BCSCMatrix * vec4<f32>(vertexBC.x, vertexBC.y, vertexBC.z, 1.0);\n\n //VTK::Color::Impl\n\n // compute the projected vertex position\n output.centerVC = vertexVC.xyz;\n output.radiusVC = radiusMC;\n output.lengthVC = length(orientMC);\n output.orientVC = (rendererUBO.WCVCNormals * vec4<f32>(normalize(orientMC), 0.0)).xyz;\n\n // make sure it is pointing out of the screen\n if (output.orientVC.z < 0.0)\n {\n output.orientVC = -output.orientVC;\n }\n\n // make the basis\n var xbase: vec3<f32>;\n var ybase: vec3<f32>;\n var dir: vec3<f32> = vec3<f32>(0.0,0.0,1.0);\n if (rendererUBO.cameraParallel == 0u)\n {\n dir = normalize(-vertexVC.xyz);\n }\n if (abs(dot(dir,output.orientVC)) == 1.0)\n {\n xbase = normalize(cross(vec3<f32>(0.0,1.0,0.0),output.orientVC));\n ybase = cross(xbase,output.orientVC);\n }\n else\n {\n xbase = normalize(cross(output.orientVC,dir));\n ybase = cross(output.orientVC,xbase);\n }\n\n\n var vertIdx: u32 = input.vertexIndex % 12u;\n var offsets: vec3<f32> = offsetsArray[vertIdx];\n\n vertexVC = vec4<f32>(vertexVC.xyz +\n output.radiusVC * offsets.x * xbase +\n output.radiusVC * offsets.y * ybase +\n 0.5 * output.lengthVC * offsets.z * output.orientVC, 1.0);\n\n output.vertexVC = vertexVC;\n\n //VTK::Position::Impl\n\n return output;\n}\n"; // ----------------------------------------------------------------------------
31
31
  // vtkWebGPUStickMapper methods
32
32
  // ----------------------------------------------------------------------------
33
33
 
@@ -1,1037 +1,1037 @@
1
1
  <?xml version="1.0"?>
2
- <testsuite name="Chrome Headless 93.0.4577.63 (Linux x86_64)" package="" timestamp="2021-09-16T19:47:11" id="0" hostname="fv-az294-994" tests="1029" errors="0" failures="0" time="28744.338">
2
+ <testsuite name="Chrome Headless 93.0.4577.63 (Linux x86_64)" package="" timestamp="2021-09-17T13:35:47" id="0" hostname="fv-az195-743" tests="1029" errors="0" failures="0" time="31926.989">
3
3
  <properties>
4
4
  <property name="browser.fullName" value="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.63 Safari/537.36"/>
5
5
  </properties>
6
- <testcase name=" Matching image - delta 0.10%" time="0.349" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64)."/>
7
- <testcase name=" Image match resolution" time="0.353" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64)."/>
8
- <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.353" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
9
- <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.354" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
10
- <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.354" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
11
- <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.354" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
12
- <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.354" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
13
- <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.357" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
14
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
15
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
16
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
17
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
18
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
19
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
20
- <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.359" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
21
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1)" time="0.359" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
22
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1, 1)" time="0.359" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
23
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4)" time="0.359" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
24
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4, 0)" time="0.359" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
25
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4, 1)" time="0.359" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
26
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4, 2)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
27
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.46, 0)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
28
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.46, 1)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
29
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.46, 2)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
30
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(123.46, 0)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
31
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(123.46, 1)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
32
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(123.46, 2)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
33
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(6.06627640054528e-14, 6)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
34
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(-6.06627640054528e-14, 6)" time="0.36" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
35
- <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.23456e4, 2)" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
36
- <testcase name="# Test areEquals&#xA; same vec1" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
37
- <testcase name="# Test areEquals&#xA; same vec2" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
38
- <testcase name="# Test areEquals&#xA; same vec2" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
39
- <testcase name="# Test areEquals&#xA; larger vec" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
40
- <testcase name="# Test areEquals&#xA; smaller vec" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
41
- <testcase name="# Test areEquals&#xA; exact comparison for same vec" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
42
- <testcase name="# Test areEquals&#xA; exact(0) comparison for diff vec" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
43
- <testcase name="# Test areEquals&#xA; approx(1e-8) comparison for diff vec" time="0.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
44
- <testcase name="# Test areEquals&#xA; approx (2e-7) comparison for diff vec" time="0.362" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
45
- <testcase name="# Test areEquals&#xA; approx (1e-6) comparison for diff vec" time="0.362" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
46
- <testcase name="# Test vtkMatrixBuilder rotateFromDirections&#xA; should be truthy" time="0.363" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkMatrixBuilder rotateFromDirections&#xA;"/>
47
- <testcase name="# Test vtkMatrixBuilder rotateFromDirections&#xA; should be truthy" time="0.363" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkMatrixBuilder rotateFromDirections&#xA;"/>
48
- <testcase name="# Test vtkMatrixBuilder rotateFromDirections&#xA; should be truthy" time="0.363" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkMatrixBuilder rotateFromDirections&#xA;"/>
49
- <testcase name="# Test LookupTable setTable&#xA; vtkLookupTable TestSetTable" time="0.365" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
50
- <testcase name="# Test LookupTable setTable&#xA; should be strictly equal" time="0.907" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
51
- <testcase name="# Test LookupTable setTable&#xA; Matching image - delta 0.00%" time="0.907" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
52
- <testcase name="# Test LookupTable setTable&#xA; Image match resolution" time="0.91" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
53
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
54
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
55
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
56
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
57
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
58
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
59
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
60
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
61
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
62
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
63
- <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.912" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
64
- <testcase name="# Test vtkBoundingBox intersectPlane&#xA; should be strictly equal" time="0.912" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectPlane&#xA;"/>
65
- <testcase name="# Test vtkBoundingBox intersectPlane&#xA; should be strictly equal" time="0.912" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectPlane&#xA;"/>
66
- <testcase name="# Test vtkBoundingBox intersectPlane&#xA; should be strictly equal" time="0.913" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectPlane&#xA;"/>
67
- <testcase name="# Test vtkBox instance&#xA; Make sure the class definition exists" time="0.913" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox instance&#xA;"/>
68
- <testcase name="# Test vtkBox instance&#xA; should be truthy" time="0.914" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox instance&#xA;"/>
69
- <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.914" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
70
- <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.914" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
71
- <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.914" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
72
- <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.914" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
73
- <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.914" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
74
- <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.915" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
75
- <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.915" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
76
- <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.915" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
77
- <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.916" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
78
- <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.916" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
79
- <testcase name="# Test vtkCell instance&#xA; Make sure the class definition exists" time="0.917" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell instance&#xA;"/>
80
- <testcase name="# Test vtkCell instance&#xA; should be truthy" time="0.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell instance&#xA;"/>
81
- <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
82
- <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
83
- <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
84
- <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
85
- <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
86
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
87
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
88
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
89
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
90
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should not be strictly equal" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
91
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
92
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be deeply equivalent" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
93
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be deeply equivalent" time="0.919" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
94
- <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be deeply equivalent" time="0.92" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
95
- <testcase name="# Test vtkCell deepCopy&#xA; should not be strictly equal" time="0.92" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell deepCopy&#xA;"/>
96
- <testcase name="# Test vtkCell deepCopy&#xA; should be deeply equivalent" time="0.921" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell deepCopy&#xA;"/>
97
- <testcase name="# Test Cone Implicit Function&#xA; Cone Implicit Function" time="1.577" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Cone Implicit Function&#xA;"/>
98
- <testcase name="# Test Cone Implicit Function&#xA; Matching image - delta 0.00%" time="1.577" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Cone Implicit Function&#xA;"/>
99
- <testcase name="# Test Cone Implicit Function&#xA; Image match resolution" time="1.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Cone Implicit Function&#xA;"/>
100
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Make sure the class definition exists" time="1.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
101
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Make sure the newInstance method exists." time="1.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
102
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default number of arrays should be 0" time="1.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
103
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Scalars should be null" time="1.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
104
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding scalars empty DSA should return index of 0" time="1.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
105
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting scalars should return 0 (the index of the array)." time="1.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
106
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting scalars with an invalid name should return -1." time="1.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
107
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting scalars with an invalid name should reset the attribute." time="1.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
108
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Vectors should be null" time="1.61" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
109
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding vectors empty DSA should return index of 1" time="1.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
110
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting vectors should return 1 (the index of the array)." time="1.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
111
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting vectors with an invalid name should return -1." time="1.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
112
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting vectors with an invalid name should reset the attribute." time="1.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
113
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Normals should be null" time="1.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
114
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding normals empty DSA should return index of 2" time="1.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
115
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting normals should return 2 (the index of the array)." time="1.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
116
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting normals with an invalid name should return -1." time="1.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
117
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting normals with an invalid name should reset the attribute." time="1.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
118
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default TCoords should be null" time="1.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
119
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding tcoords empty DSA should return index of 3" time="1.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
120
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tcoords should return 3 (the index of the array)." time="1.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
121
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tcoords with an invalid name should return -1." time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
122
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tcoords with an invalid name should reset the attribute." time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
123
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Tensors should be null" time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
124
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding tensors empty DSA should return index of 4" time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
125
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tensors should return 4 (the index of the array)." time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
126
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tensors with an invalid name should return -1." time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
127
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tensors with an invalid name should reset the attribute." time="1.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
128
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default GlobalIds should be null" time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
129
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding globalids empty DSA should return index of 5" time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
130
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting globalids should return 5 (the index of the array)." time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
131
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting globalids with an invalid name should return -1." time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
132
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting globalids with an invalid name should reset the attribute." time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
133
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Default PedigreeIds should be null" time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
134
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding pedigreeids empty DSA should return index of 6" time="1.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
135
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting pedigreeids should return 6 (the index of the array)." time="1.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
136
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting pedigreeids with an invalid name should return -1." time="1.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
137
- <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting pedigreeids with an invalid name should reset the attribute." time="1.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
138
- <testcase name="# Test vtkLine instance&#xA; Make sure the class definition exists" time="1.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine instance&#xA;"/>
139
- <testcase name="# Test vtkLine instance&#xA; should be truthy" time="1.618" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine instance&#xA;"/>
140
- <testcase name="# Test vtkLine static::intersection&#xA; Points on line" time="1.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
141
- <testcase name="# Test vtkLine static::intersection&#xA; Points on line" time="1.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
142
- <testcase name="# Test vtkLine static::intersection&#xA; Points on line" time="1.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
143
- <testcase name="# Test vtkLine static::intersection&#xA; Intersection" time="1.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
144
- <testcase name="# Test vtkLine static::intersection&#xA; should be strictly equal" time="1.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
145
- <testcase name="# Test vtkLine static::intersection&#xA; should be strictly equal" time="1.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
146
- <testcase name="# Test vtkLine static::intersection&#xA; No intersection" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
147
- <testcase name="# Test vtkLine static::distanceToLine&#xA; Invalid line" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
148
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
149
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
150
- <testcase name="# Test vtkLine static::distanceToLine&#xA; On line" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
151
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
152
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
153
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
154
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
155
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
156
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
157
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
158
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
159
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
160
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
161
- <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.622" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
162
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.622" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
163
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be deeply equivalent" time="1.623" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
164
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.623" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
165
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.623" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
166
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be deeply equivalent" time="1.623" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
167
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.623" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
168
- <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.623" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
169
- <testcase name="# Test vtkPlane instance&#xA; Make sure the class definition exists" time="1.624" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane instance&#xA;"/>
170
- <testcase name="# Test vtkPlane instance&#xA; should be truthy" time="1.624" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane instance&#xA;"/>
171
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.624" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
172
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.624" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
173
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.624" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
174
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
175
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
176
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
177
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
178
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
179
- <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
180
- <testcase name="# Test vtkPlane projectPoint&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectPoint&#xA;"/>
181
- <testcase name="# Test vtkPlane projectPoint&#xA; should be strictly equal" time="1.625" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectPoint&#xA;"/>
182
- <testcase name="# Test vtkPlane projectPoint&#xA; should be strictly equal" time="1.627" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectPoint&#xA;"/>
183
- <testcase name="# Test vtkPlane DistanceToPlane&#xA; should be strictly equal" time="1.627" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane DistanceToPlane&#xA;"/>
184
- <testcase name="# Test vtkPlane DistanceToPlane&#xA; should be strictly equal" time="1.628" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane DistanceToPlane&#xA;"/>
185
- <testcase name="# Test vtkPlane Push&#xA; should be strictly equal" time="1.628" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane Push&#xA;"/>
186
- <testcase name="# Test vtkPlane Push&#xA; should be strictly equal" time="1.628" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane Push&#xA;"/>
187
- <testcase name="# Test vtkPlane Push&#xA; should be strictly equal" time="1.628" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane Push&#xA;"/>
188
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.628" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
189
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
190
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
191
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
192
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
193
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
194
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
195
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
196
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
197
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
198
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
199
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.629" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
200
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.63" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
201
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.63" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
202
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.63" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
203
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.63" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
204
- <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.63" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
205
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
206
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
207
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
208
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
209
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
210
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
211
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
212
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
213
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
214
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
215
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.631" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
216
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
217
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
218
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
219
- <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
220
- <testcase name="# Test vtkPlane evaluateFunction&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane evaluateFunction&#xA;"/>
221
- <testcase name="# Test vtkPlane evaluateFunction&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane evaluateFunction&#xA;"/>
222
- <testcase name="# Test vtkPlane evaluateFunction&#xA; should be strictly equal" time="1.632" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane evaluateFunction&#xA;"/>
223
- <testcase name="# Test vtkPolyData instance&#xA; Make sure the class definition exists" time="1.633" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData instance&#xA;"/>
224
- <testcase name="# Test vtkPolyData instance&#xA; should be truthy" time="1.641" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData instance&#xA;"/>
225
- <testcase name="# Test vtkPolyData cells&#xA; Line cell should be made of the number of points plus 1" time="1.641" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData cells&#xA;"/>
226
- <testcase name="# Test vtkPolyData cells&#xA; Triangle cells should be made of 3 points" time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData cells&#xA;"/>
227
- <testcase name="# Test vtkPolyData cells&#xA; should be deeply equivalent" time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData cells&#xA;"/>
228
- <testcase name="# Test vtkTriangle instance&#xA; Make sure the class definition exists" time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle instance&#xA;"/>
229
- <testcase name="# Test vtkTriangle instance&#xA; should be truthy" time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle instance&#xA;"/>
230
- <testcase name="# Test vtkTriangle static::computeNormalDirection&#xA; should be deeply equivalent" time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormalDirection&#xA;"/>
231
- <testcase name="# Test vtkTriangle static::computeNormalDirection&#xA; should be deeply equivalent" time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormalDirection&#xA;"/>
232
- <testcase name="# Test vtkTriangle static::computeNormalDirection&#xA; should be deeply equivalent" time="1.652" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormalDirection&#xA;"/>
233
- <testcase name="# Test vtkTriangle static::computeNormal&#xA; should be deeply equivalent" time="1.652" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormal&#xA;"/>
234
- <testcase name="# Test vtkTriangle static::computeNormal&#xA; should be deeply equivalent" time="1.652" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormal&#xA;"/>
235
- <testcase name="# Test vtkTriangle static::computeNormal&#xA; should be deeply equivalent" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormal&#xA;"/>
236
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
237
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
238
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
239
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
240
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
241
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
242
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
243
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
244
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
245
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
246
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
247
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
248
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
249
- <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
250
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
251
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
252
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
253
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
254
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
255
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
256
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
257
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
258
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
259
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
260
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
261
- <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
262
- <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
263
- <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
264
- <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
265
- <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
266
- <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
267
- <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
268
- <testcase name="# Test vtkAppendPolyData instance&#xA; Make sure the class definition exists." time="1.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData instance&#xA;"/>
269
- <testcase name="# Test vtkAppendPolyData instance&#xA; Make sure an instance can be created." time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData instance&#xA;"/>
270
- <testcase name="# Test vtkAppendPolyData execution&#xA; Make sure the number of points is correct." time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData execution&#xA;"/>
271
- <testcase name="# Test vtkAppendPolyData execution&#xA; Make sure the output data type is correct." time="1.67" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData execution&#xA;"/>
272
- <testcase name="# Test vtkAppendPolyData execution&#xA; Make sure the number of polys is correct." time="1.67" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData execution&#xA;"/>
273
- <testcase name="# Test vtkAppendPolyData rendering&#xA; vtkAppendPolyData Rendering" time="2.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData rendering&#xA;"/>
274
- <testcase name="# Test vtkAppendPolyData rendering&#xA; Matching image - delta 0.00%" time="2.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData rendering&#xA;"/>
275
- <testcase name="# Test vtkAppendPolyData rendering&#xA; Image match resolution" time="2.141" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData rendering&#xA;"/>
276
- <testcase name="# Test vtkCalculator instance&#xA; Make sure the class definition exists." time="2.142" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator instance&#xA;"/>
277
- <testcase name="# Test vtkCalculator instance&#xA; Make sure an instance can be created." time="2.153" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator instance&#xA;"/>
278
- <testcase name="# Test vtkCalculator execution&#xA; Output dataset exists" time="2.153" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
279
- <testcase name="# Test vtkCalculator execution&#xA; The output dataset should be a vtkPolydata" time="2.153" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
280
- <testcase name="# Test vtkCalculator execution&#xA; The number of points did not change between input 66 and output 66" time="2.154" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
281
- <testcase name="# Test vtkCalculator execution&#xA; Output point-scalars array exists." time="2.154" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
282
- <testcase name="# Test vtkCalculator execution&#xA; Output point-scalars is &quot;sine wave&quot;." time="2.154" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
283
- <testcase name="# Test vtkCalculator execution&#xA; Output field-data array exists." time="2.154" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
284
- <testcase name="# Test vtkCalculator execution&#xA; The uniform result variable should be 22.55; got 22.549999237060547." time="2.154" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
285
- <testcase name="# Test vtkClosedPolyLineToSurfaceFilter instance&#xA; Make sure the class defination exists" time="2.155" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkClosedPolyLineToSurfaceFilter instance&#xA;"/>
286
- <testcase name="# Test vtkClosedPolyLineToSurfaceFilter instance&#xA; Make sure an instance can be created." time="2.159" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkClosedPolyLineToSurfaceFilter instance&#xA;"/>
287
- <testcase name="# Test vtkClosedPolyLineToSurfaceFilter execution&#xA; Polys should have a single segment with 96 point indices" time="2.159" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkClosedPolyLineToSurfaceFilter execution&#xA;"/>
288
- <testcase name="# Test vtkImageStreamline instance&#xA; Make sure the class definition exist" time="2.16" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
289
- <testcase name="# Test vtkImageStreamline instance&#xA; Make sure the instance exist" time="2.16" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
290
- <testcase name="# Test vtkImageStreamline instance&#xA; Default integrationStep should be 1" time="2.16" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
291
- <testcase name="# Test vtkImageStreamline instance&#xA; Default MaximumNumberOfSteps should be 1000" time="2.16" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
292
- <testcase name="# Test vtkImageStreamline instance&#xA; Updated value of integrationStep should be 0.1" time="2.296" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
293
- <testcase name="# Test vtkImageStreamline execution&#xA; Output dataset exist" time="2.296" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline execution&#xA;"/>
294
- <testcase name="# Test vtkImageStreamline execution&#xA; The output dataset should be a vtkPolydata" time="2.296" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline execution&#xA;"/>
295
- <testcase name="# Test vtkImageStreamline execution&#xA; The number of points should be 2228" time="2.297" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline execution&#xA;"/>
296
- <testcase name="# Test MultipleBonds&#xA; should be truthy" time="2.855" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MultipleBonds&#xA;"/>
297
- <testcase name="# Test MultipleBonds&#xA; Matching image - delta 0.01%" time="2.855" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MultipleBonds&#xA;"/>
298
- <testcase name="# Test MultipleBonds&#xA; Image match resolution" time="3.505" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MultipleBonds&#xA;"/>
299
- <testcase name="# Test vtkPaintFilter ellipse on images with large spacing&#xA; Matching image - delta 0.00%" time="3.505" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPaintFilter ellipse on images with large spacing&#xA;"/>
300
- <testcase name="# Test vtkPaintFilter ellipse on images with large spacing&#xA; Image match resolution" time="3.508" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPaintFilter ellipse on images with large spacing&#xA;"/>
301
- <testcase name="# Test vtkTubeFilter instance&#xA; Make sure the class definition exists." time="3.509" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter instance&#xA;"/>
302
- <testcase name="# Test vtkTubeFilter instance&#xA; Make sure an instance can be created." time="3.517" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter instance&#xA;"/>
303
- <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output data type is double." time="3.517" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
304
- <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of points is correct without capping." time="3.517" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
305
- <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of normals is correct without capping." time="3.519" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
306
- <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output data type is float." time="3.519" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
307
- <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of points is correct with capping." time="3.52" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
308
- <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of normals is correct with capping." time="3.52" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
309
- <testcase name="# Test vtkTubeFilter rendering&#xA; vtkTubeFilter Rendering" time="3.986" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter rendering&#xA;"/>
310
- <testcase name="# Test vtkTubeFilter rendering&#xA; Matching image - delta 0.00%" time="3.987" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter rendering&#xA;"/>
311
- <testcase name="# Test vtkTubeFilter rendering&#xA; Image match resolution" time="4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter rendering&#xA;"/>
312
- <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the output number of points is correct without capping." time="4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
313
- <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the length of the radius array is correct." time="4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
314
- <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the length of the color array is correct." time="4.001" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
315
- <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the array name to color by is correct." time="4.001" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
316
- <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the scalar mode is correct." time="4.002" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
317
- <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the color mode is correct." time="4.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
318
- <testcase name="# Test vtkTubeFilter color map rendering&#xA; Matching image - delta 0.00%" time="4.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter color map rendering&#xA;"/>
319
- <testcase name="# Test vtkTubeFilter color map rendering&#xA; Image match resolution" time="4.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter color map rendering&#xA;"/>
320
- <testcase name="# Test vtkWarpScalar instance&#xA; Make sure the class definition exist" time="4.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
321
- <testcase name="# Test vtkWarpScalar instance&#xA; Make sure the instance exist" time="4.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
322
- <testcase name="# Test vtkWarpScalar instance&#xA; Default ScaleFactor should be 1" time="4.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
323
- <testcase name="# Test vtkWarpScalar instance&#xA; Default UseNormal should be false" time="4.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
324
- <testcase name="# Test vtkWarpScalar instance&#xA; Default xyPlane should be false" time="4.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
325
- <testcase name="# Test vtkWarpScalar instance&#xA; Default normal should be [0, 0, 1]" time="4.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
326
- <testcase name="# Test vtkWarpScalar instance&#xA; Updated value of ScaleFactor should be 2.5" time="4.452" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
327
- <testcase name="# Test vtkWarpScalar execution&#xA; Output dataset exist" time="4.452" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar execution&#xA;"/>
328
- <testcase name="# Test vtkWarpScalar execution&#xA; The output dataset should be a vtkPolydata" time="4.452" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar execution&#xA;"/>
329
- <testcase name="# Test vtkWarpScalar execution&#xA; The number of points do not change between input 50 and output 50" time="4.452" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar execution&#xA;"/>
330
- <testcase name="# Test vtkConcentricCylinderSource Rendering&#xA; vtkConcentricCylinderSource Rendering" time="4.881" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConcentricCylinderSource Rendering&#xA;"/>
331
- <testcase name="# Test vtkConcentricCylinderSource Rendering&#xA; Matching image - delta 0.00%" time="4.881" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConcentricCylinderSource Rendering&#xA;"/>
332
- <testcase name="# Test vtkConcentricCylinderSource Rendering&#xA; Image match resolution" time="4.882" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConcentricCylinderSource Rendering&#xA;"/>
333
- <testcase name="# Test vtkConeSource Rendering&#xA; vtkConeSource Rendering" time="5.328" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConeSource Rendering&#xA;"/>
334
- <testcase name="# Test vtkConeSource Rendering&#xA; Matching image - delta 0.00%" time="5.328" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConeSource Rendering&#xA;"/>
335
- <testcase name="# Test vtkConeSource Rendering&#xA; Image match resolution" time="5.333" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConeSource Rendering&#xA;"/>
336
- <testcase name="# Test vtkCubeSource Rendering&#xA; vtkCubeSource Rendering" time="6.335" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCubeSource Rendering&#xA;"/>
337
- <testcase name="# Test vtkCubeSource Rendering&#xA; Matching image - delta 0.62%" time="6.335" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCubeSource Rendering&#xA;"/>
338
- <testcase name="# Test vtkCubeSource Rendering&#xA; Image match resolution" time="6.337" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCubeSource Rendering&#xA;"/>
339
- <testcase name="# Test vtkCylinderSource Rendering&#xA; vtkCylinderSource Rendering" time="6.766" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCylinderSource Rendering&#xA;"/>
340
- <testcase name="# Test vtkCylinderSource Rendering&#xA; Matching image - delta 0.00%" time="6.766" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCylinderSource Rendering&#xA;"/>
341
- <testcase name="# Test vtkCylinderSource Rendering&#xA; Image match resolution" time="6.78" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCylinderSource Rendering&#xA;"/>
342
- <testcase name="# Test vtkLineSource Rendering&#xA; vtkLineSource Rendering" time="7.19" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLineSource Rendering&#xA;"/>
343
- <testcase name="# Test vtkLineSource Rendering&#xA; Matching image - delta 0.24%" time="7.19" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLineSource Rendering&#xA;"/>
344
- <testcase name="# Test vtkLineSource Rendering&#xA; Image match resolution" time="7.192" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLineSource Rendering&#xA;"/>
345
- <testcase name="# Test vtkPlaneSource Rendering&#xA; vtkPlaneSource Rendering" time="7.639" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlaneSource Rendering&#xA;"/>
346
- <testcase name="# Test vtkPlaneSource Rendering&#xA; Matching image - delta 0.00%" time="7.64" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlaneSource Rendering&#xA;"/>
347
- <testcase name="# Test vtkPlaneSource Rendering&#xA; Image match resolution" time="7.643" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlaneSource Rendering&#xA;"/>
348
- <testcase name="# Test vtkPointSource Rendering&#xA; vtkPointSource Rendering" time="8.08" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointSource Rendering&#xA;"/>
349
- <testcase name="# Test vtkPointSource Rendering&#xA; Matching image - delta 0.00%" time="8.08" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointSource Rendering&#xA;"/>
350
- <testcase name="# Test vtkPointSource Rendering&#xA; Image match resolution" time="8.082" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointSource Rendering&#xA;"/>
351
- <testcase name="# Test vtkTextureMapToPlane instance&#xA; Make sure the class definition exists" time="8.083" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane instance&#xA;"/>
352
- <testcase name="# Test vtkTextureMapToPlane instance&#xA; should be truthy" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane instance&#xA;"/>
353
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
354
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
355
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
356
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
357
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
358
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
359
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
360
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
361
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.089" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
362
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
363
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
364
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
365
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
366
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
367
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
368
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
369
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
370
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
371
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
372
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
373
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.09" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
374
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
375
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
376
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
377
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
378
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
379
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
380
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
381
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
382
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
383
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
384
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
385
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
386
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
387
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.091" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
388
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
389
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
390
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
391
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
392
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
393
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
394
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
395
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
396
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
397
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
398
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
399
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.092" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
400
- <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
401
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
402
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
403
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
404
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
405
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
406
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.095" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
407
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
408
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
409
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
410
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
411
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
412
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
413
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
414
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
415
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
416
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
417
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
418
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
419
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
420
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
421
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
422
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
423
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
424
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
425
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
426
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
427
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
428
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
429
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
430
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
431
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
432
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
433
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
434
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
435
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.097" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
436
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
437
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
438
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
439
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
440
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
441
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
442
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
443
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
444
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
445
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
446
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
447
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
448
- <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="8.098" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
449
- <testcase name="# Test vtkTextureMapToSphere instance&#xA; Make sure the class definition exists" time="8.099" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere instance&#xA;"/>
450
- <testcase name="# Test vtkTextureMapToSphere instance&#xA; should be truthy" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere instance&#xA;"/>
451
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
452
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
453
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
454
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
455
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
456
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
457
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
458
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
459
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.103" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
460
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
461
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
462
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
463
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
464
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
465
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
466
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
467
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
468
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
469
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
470
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
471
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
472
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
473
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.104" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
474
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
475
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
476
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
477
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
478
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
479
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
480
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
481
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
482
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
483
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
484
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
485
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.105" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
486
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
487
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
488
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
489
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
490
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
491
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
492
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
493
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
494
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
495
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
496
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
497
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.106" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
498
- <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="8.107" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
499
- <testcase name="# Test vtkImageReslice Rendering&#xA; vtkImageReslice Rendering" time="8.774" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageReslice Rendering&#xA;"/>
500
- <testcase name="# Test vtkImageReslice Rendering&#xA; Matching image - delta 0.13%" time="8.774" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageReslice Rendering&#xA;"/>
501
- <testcase name="# Test vtkImageReslice Rendering&#xA; Image match resolution" time="8.867" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageReslice Rendering&#xA;"/>
502
- <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="8.868" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
503
- <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="8.868" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
504
- <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="8.868" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
505
- <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="8.868" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
506
- <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="8.869" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
507
- <testcase name="# Test MoleculeMapper&#xA; Filter: MoleculeToRepresentation" time="8.881" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
508
- <testcase name="# Test MoleculeMapper&#xA; should be truthy" time="8.923" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
509
- <testcase name="# Test MoleculeMapper&#xA; should be truthy" time="9.47" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
510
- <testcase name="# Test MoleculeMapper&#xA; Matching image - delta 0.00%" time="9.47" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
511
- <testcase name="# Test MoleculeMapper&#xA; Image match resolution" time="9.481" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
512
- <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Custom points should not be active in Gaussian mode" time="9.481" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
513
- <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Custom points should be active in Points mode" time="9.482" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
514
- <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Default nodes" time="9.482" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
515
- <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Default points" time="9.483" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
516
- <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Default nodes" time="9.483" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
517
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.484" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
518
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.484" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
519
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.484" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
520
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.484" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
521
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
522
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
523
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
524
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
525
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
526
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
527
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.486" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
528
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.486" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
529
- <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="9.486" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
530
- <testcase name="# Test Actor&#xA; vtkActor testRotate" time="9.954" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Actor&#xA;"/>
531
- <testcase name="# Test Actor&#xA; Matching image - delta 0.16%" time="9.955" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Actor&#xA;"/>
532
- <testcase name="# Test Actor&#xA; Image match resolution" time="10.843" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Actor&#xA;"/>
533
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.843" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
534
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.844" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
535
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.844" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
536
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.844" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
537
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.846" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
538
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.847" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
539
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.847" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
540
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.847" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
541
- <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="10.848" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
542
- <testcase name="# Test vtkCellPicker instance&#xA; Make sure the class definition exists" time="10.848" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker instance&#xA;"/>
543
- <testcase name="# Test vtkCellPicker instance&#xA; should be truthy" time="10.849" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker instance&#xA;"/>
544
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; vtkOpenGLPolyDataMapper ColorTransferFunction" time="11.508" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
545
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; Matching image - delta 0.34%" time="11.508" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
546
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; Image match resolution" time="11.516" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
547
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for -0.1, expect 1,0,0" time="11.517" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
548
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0, expect 1,0,0" time="11.517" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
549
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.1, expect 1,0,0" time="11.517" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
550
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.19, expect 1,0,0" time="11.518" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
551
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.2, expect 0.5,0.5,0" time="11.519" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
552
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.59, expect 0,1,0" time="11.519" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
553
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.6, expect 0,0.5,0.5" time="11.519" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
554
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.9, expect 0,0,1" time="11.519" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
555
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 1, expect 0,0,1" time="11.52" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
556
- <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 1.1, expect 0,0,1" time="11.52" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
557
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; vtkOpenGLPolyDataMapper ColorTransferFunction Presets" time="12.471" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
558
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; Matching image - delta 0.00%" time="12.471" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
559
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; Image match resolution" time="12.483" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
560
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; vtkOpenGLPolyDataMapper ColorTransferFunction Presets" time="18.936" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
561
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; Matching image - delta 0.19%" time="18.936" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
562
- <testcase name="# Test Interpolate Scalars Before Colors&#xA; Image match resolution" time="18.947" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
563
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.948" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
564
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.948" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
565
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.949" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
566
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.949" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
567
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.949" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
568
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.949" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
569
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.95" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
570
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.95" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
571
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.95" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
572
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.95" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
573
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.95" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
574
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.951" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
575
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.951" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
576
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.951" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
577
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.951" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
578
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.951" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
579
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.952" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
580
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.952" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
581
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.952" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
582
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.952" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
583
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.952" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
584
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.953" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
585
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.953" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
586
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.954" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
587
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.954" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
588
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.955" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
589
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.955" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
590
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.955" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
591
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.955" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
592
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.955" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
593
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.956" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
594
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.956" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
595
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.956" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
596
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.957" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
597
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.957" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
598
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.957" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
599
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.957" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
600
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.957" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
601
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.958" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
602
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.958" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
603
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.958" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
604
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.958" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
605
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.958" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
606
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
607
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
608
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
609
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
610
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
611
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.96" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
612
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.96" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
613
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.96" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
614
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.96" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
615
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.96" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
616
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.96" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
617
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
618
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
619
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
620
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
621
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
622
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
623
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.962" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
624
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.962" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
625
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.962" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
626
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.962" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
627
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.962" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
628
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.962" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
629
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.963" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
630
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.963" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
631
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.963" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
632
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.963" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
633
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.963" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
634
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.963" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
635
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.964" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
636
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.964" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
637
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.964" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
638
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.964" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
639
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.964" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
640
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.964" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
641
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.965" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
642
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.965" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
643
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.965" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
644
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.965" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
645
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.965" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
646
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.965" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
647
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.966" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
648
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.966" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
649
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.966" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
650
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.966" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
651
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.966" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
652
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.966" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
653
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.967" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
654
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.967" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
655
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.967" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
656
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.967" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
657
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.967" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
658
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.968" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
659
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.968" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
660
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.968" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
661
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.968" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
662
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.968" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
663
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.969" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
664
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.969" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
665
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.969" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
666
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.969" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
667
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.969" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
668
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.969" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
669
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.97" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
670
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.97" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
671
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.97" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
672
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.97" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
673
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.97" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
674
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.97" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
675
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
676
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
677
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
678
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
679
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
680
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
681
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.971" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
682
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
683
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
684
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
685
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
686
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
687
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
688
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.972" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
689
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.973" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
690
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.973" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
691
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.973" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
692
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.973" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
693
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.973" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
694
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.974" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
695
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.974" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
696
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.974" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
697
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.974" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
698
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.975" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
699
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.975" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
700
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.975" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
701
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.975" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
702
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.975" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
703
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.976" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
704
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.976" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
705
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.976" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
706
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.976" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
707
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.976" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
708
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.977" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
709
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.977" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
710
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.977" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
711
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.977" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
712
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.978" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
713
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.978" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
714
- <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="18.978" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
715
- <testcase name="# Test Follower class&#xA; vtkFollower" time="19.753" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Follower class&#xA;"/>
716
- <testcase name="# Test Follower class&#xA; Matching image - delta 1.18%" time="19.753" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Follower class&#xA;"/>
717
- <testcase name="# Test Follower class&#xA; Image match resolution" time="19.76" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Follower class&#xA;"/>
718
- <testcase name="# Test vtkGlyph3DMapper Rendering&#xA; vtkGlyph3DMapper Rendering" time="20.234" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkGlyph3DMapper Rendering&#xA;"/>
719
- <testcase name="# Test vtkGlyph3DMapper Rendering&#xA; Matching image - delta 0.03%" time="20.235" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkGlyph3DMapper Rendering&#xA;"/>
720
- <testcase name="# Test vtkGlyph3DMapper Rendering&#xA; Image match resolution" time="20.235" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkGlyph3DMapper Rendering&#xA;"/>
721
- <testcase name="# Test HardwareSelector&#xA; vtkHardwareSelector TestHardwareSelector" time="20.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
722
- <testcase name="# Test HardwareSelector&#xA; Two props selected" time="20.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
723
- <testcase name="# Test HardwareSelector&#xA; Correct props were selected" time="20.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
724
- <testcase name="# Test HardwareSelectorGlyph&#xA; TestHardwareSelectorGlyph" time="20.852" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
725
- <testcase name="# Test HardwareSelectorGlyph&#xA; Seven glyphs selected" time="20.852" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
726
- <testcase name="# Test HardwareSelectorGlyph&#xA; glyph 71 was the first selected" time="20.852" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
727
- <testcase name="# Test HardwareSelectorGlyph&#xA; Correct prop was selected" time="20.854" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
728
- <testcase name="# Test HardwareSelector&#xA; vtkHardwareSelector TestHardwareSelector" time="23.524" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
729
- <testcase name="# Test HardwareSelector&#xA; Hardware selector takes less than six normal renders (1992, 187, 282)" time="23.536" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
730
- <testcase name="# Test Edge Visibility&#xA; vtkMapper EdgeVisibility" time="24.018" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Edge Visibility&#xA;"/>
731
- <testcase name="# Test Edge Visibility&#xA; Matching image - delta 0.69%" time="24.02" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Edge Visibility&#xA;"/>
732
- <testcase name="# Test Edge Visibility&#xA; Image match resolution" time="24.021" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Edge Visibility&#xA;"/>
733
- <testcase name="# Test VectorComponent&#xA; vtkMapper Vector Component" time="24.77" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test VectorComponent&#xA;"/>
734
- <testcase name="# Test VectorComponent&#xA; Matching image - delta 0.26%" time="24.77" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test VectorComponent&#xA;"/>
735
- <testcase name="# Test VectorComponent&#xA; Image match resolution" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test VectorComponent&#xA;"/>
736
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
737
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
738
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
739
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
740
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
741
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
742
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
743
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
744
- <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="25.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
745
- <testcase name="# Test vtkPointPicker line source&#xA; pick at (380.5, 200)" time="25.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
746
- <testcase name="# Test vtkPointPicker line source&#xA; should be strictly equal" time="25.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
747
- <testcase name="# Test vtkPointPicker line source&#xA; point id" time="25.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
748
- <testcase name="# Test vtkPointPicker line source&#xA; pick at (20, 200.5)" time="25.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
749
- <testcase name="# Test vtkPointPicker line source&#xA; should be strictly equal" time="25.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
750
- <testcase name="# Test vtkPointPicker line source&#xA; point id" time="25.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
751
- <testcase name="# Test vtkPointPicker instance&#xA; Make sure the class definition exists" time="25.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker instance&#xA;"/>
752
- <testcase name="# Test vtkPointPicker instance&#xA; should be truthy" time="25.693" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker instance&#xA;"/>
753
- <testcase name="# Test Set Actor User Matrix&#xA; vtkActor SetUserMatrix" time="26.341" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Set Actor User Matrix&#xA;"/>
754
- <testcase name="# Test Set Actor User Matrix&#xA; Matching image - delta 0.18%" time="26.341" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Set Actor User Matrix&#xA;"/>
755
- <testcase name="# Test Set Actor User Matrix&#xA; Image match resolution" time="26.863" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Set Actor User Matrix&#xA;"/>
756
- <testcase name="# Test multiple renderers&#xA; Matching image - delta 0.00%" time="26.863" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test multiple renderers&#xA;"/>
757
- <testcase name="# Test multiple renderers&#xA; Image match resolution" time="26.865" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test multiple renderers&#xA;"/>
758
- <testcase name="# Test vtkSphereMapper Rendering&#xA; vtkSphereMapper Rendering" time="27.367" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSphereMapper Rendering&#xA;"/>
759
- <testcase name="# Test vtkSphereMapper Rendering&#xA; Matching image - delta 0.00%" time="27.367" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSphereMapper Rendering&#xA;"/>
760
- <testcase name="# Test vtkSphereMapper Rendering&#xA; Image match resolution" time="27.371" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSphereMapper Rendering&#xA;"/>
761
- <testcase name="# Test SphereMapper&#xA; vtkSphereMapper testSphere" time="27.839" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test SphereMapper&#xA;"/>
762
- <testcase name="# Test SphereMapper&#xA; Matching image - delta 0.04%" time="27.839" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test SphereMapper&#xA;"/>
763
- <testcase name="# Test SphereMapper&#xA; Image match resolution" time="27.843" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test SphereMapper&#xA;"/>
764
- <testcase name="# Test StickMapper&#xA; vtkStickMapper testStick" time="28.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test StickMapper&#xA;"/>
765
- <testcase name="# Test StickMapper&#xA; Matching image - delta 0.02%" time="28.485" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test StickMapper&#xA;"/>
766
- <testcase name="# Test StickMapper&#xA; Image match resolution" time="49.074" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test StickMapper&#xA;"/>
767
- <testcase name="# Test ImageMapper&#xA; vtkOpenGLImageMapper testImage" time="49.588" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
768
- <testcase name="# Test ImageMapper&#xA; Matching image - delta 0.47%" time="49.588" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
769
- <testcase name="# Test ImageMapper&#xA; Image match resolution" time="49.59" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
770
- <testcase name="# Test ImageMapper ClippingPlanes&#xA; vtkOpenGLImageMapper testImage" time="50.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper ClippingPlanes&#xA;"/>
771
- <testcase name="# Test ImageMapper ClippingPlanes&#xA; Matching image - delta 0.00%" time="50.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper ClippingPlanes&#xA;"/>
772
- <testcase name="# Test ImageMapper ClippingPlanes&#xA; Image match resolution" time="50.214" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper ClippingPlanes&#xA;"/>
773
- <testcase name="# Test ImageMapper with Nearest Neighbor interpolation&#xA; vtkOpenGLImageMapper testImage" time="50.679" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper with Nearest Neighbor interpolation&#xA;"/>
774
- <testcase name="# Test ImageMapper with Nearest Neighbor interpolation&#xA; Matching image - delta 0.06%" time="50.68" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper with Nearest Neighbor interpolation&#xA;"/>
775
- <testcase name="# Test ImageMapper with Nearest Neighbor interpolation&#xA; Image match resolution" time="50.682" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper with Nearest Neighbor interpolation&#xA;"/>
776
- <testcase name="# Test ImageMapper&#xA; vtkOpenGLImageMapper testImage" time="51.19" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
777
- <testcase name="# Test ImageMapper&#xA; Matching image - delta 0.00%" time="51.191" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
778
- <testcase name="# Test ImageMapper&#xA; Image match resolution" time="51.192" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
779
- <testcase name="# Test Add Shader Replacements&#xA; vtkOpenGLPolyDataMapper AddShaderReplacements" time="51.896" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Add Shader Replacements&#xA;"/>
780
- <testcase name="# Test Add Shader Replacements&#xA; Matching image - delta 0.06%" time="51.897" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Add Shader Replacements&#xA;"/>
781
- <testcase name="# Test Add Shader Replacements&#xA; Image match resolution" time="51.899" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Add Shader Replacements&#xA;"/>
782
- <testcase name="# Test Clear Shader Replacements&#xA; vtkOpenGLPolyDataMapper ClearShaderReplacements" time="52.576" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clear Shader Replacements&#xA;"/>
783
- <testcase name="# Test Clear Shader Replacements&#xA; Matching image - delta 0.10%" time="52.576" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clear Shader Replacements&#xA;"/>
784
- <testcase name="# Test Clear Shader Replacements&#xA; Image match resolution" time="52.578" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clear Shader Replacements&#xA;"/>
785
- <testcase name="# Test Clipping planes&#xA; vtkOpenGLPolyDataMapper setClippingPlanes" time="53.071" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clipping planes&#xA;"/>
786
- <testcase name="# Test Clipping planes&#xA; Matching image - delta 0.00%" time="53.071" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clipping planes&#xA;"/>
787
- <testcase name="# Test Clipping planes&#xA; Image match resolution" time="53.072" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clipping planes&#xA;"/>
788
- <testcase name="# Test Interpolate Scalars Before Mapping&#xA; vtkOpenGLPolyDataMapper InterpolateScalarsBeforeColors" time="53.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Mapping&#xA;"/>
789
- <testcase name="# Test Interpolate Scalars Before Mapping&#xA; Matching image - delta 0.34%" time="53.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Mapping&#xA;"/>
790
- <testcase name="# Test Interpolate Scalars Before Mapping&#xA; Image match resolution" time="53.606" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Mapping&#xA;"/>
791
- <testcase name="# Test vtkOpenGLSkybox Rendering&#xA; Filter: OpenGLTexture" time="55.543" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Rendering&#xA;"/>
792
- <testcase name="# Test vtkOpenGLSkybox Rendering&#xA; Matching image - delta 0.00%" time="55.543" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Rendering&#xA;"/>
793
- <testcase name="# Test vtkOpenGLSkybox Rendering&#xA; Image match resolution" time="55.559" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Rendering&#xA;"/>
794
- <testcase name="# Test vtkOpenGLSkybox Background Rendering&#xA; Filter: OpenGLTexture" time="56.049" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Background Rendering&#xA;"/>
795
- <testcase name="# Test vtkOpenGLSkybox Background Rendering&#xA; Matching image - delta 0.00%" time="56.05" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Background Rendering&#xA;"/>
796
- <testcase name="# Test vtkOpenGLSkybox Background Rendering&#xA; Image match resolution" time="56.052" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Background Rendering&#xA;"/>
797
- <testcase name="# Test vtkOpenGLTexture Rendering&#xA; Filter: OpenGLTexture" time="56.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLTexture Rendering&#xA;"/>
798
- <testcase name="# Test vtkOpenGLTexture Rendering&#xA; Matching image - delta 0.01%" time="56.959" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLTexture Rendering&#xA;"/>
799
- <testcase name="# Test vtkOpenGLTexture Rendering&#xA; Image match resolution" time="56.961" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLTexture Rendering&#xA;"/>
800
- <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper Composite" time="60.9" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
801
- <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.07%" time="60.902" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
802
- <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="60.903" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
803
- <testcase name="# Test Composite Volume Rendering with parallel projection&#xA; vtkOpenGLVolumeMapper CompositeParallelProjection" time="62.771" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering with parallel projection&#xA;"/>
804
- <testcase name="# Test Composite Volume Rendering with parallel projection&#xA; Matching image - delta 0.00%" time="62.771" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering with parallel projection&#xA;"/>
805
- <testcase name="# Test Composite Volume Rendering with parallel projection&#xA; Image match resolution" time="62.774" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering with parallel projection&#xA;"/>
806
- <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper Composite16Bit" time="64.144" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
807
- <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.00%" time="64.145" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
808
- <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="64.147" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
809
- <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper Intermixed" time="67.774" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
810
- <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.06%" time="67.775" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
811
- <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="67.777" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
812
- <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper IntermixedImage" time="74.161" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
813
- <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.15%" time="74.161" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
814
- <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="74.163" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
815
- <testcase name="# Test Lighted Volume Rendering&#xA; vtkOpenGLVolumeMapper Lighting" time="79.382" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Lighted Volume Rendering&#xA;"/>
816
- <testcase name="# Test Lighted Volume Rendering&#xA; Matching image - delta 0.30%" time="79.382" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Lighted Volume Rendering&#xA;"/>
817
- <testcase name="# Test Lighted Volume Rendering&#xA; Image match resolution" time="79.383" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Lighted Volume Rendering&#xA;"/>
818
- <testcase name="# Test Maximum Intensity Projection Volume Rendering&#xA; vtkOpenGLVolumeMapper MIP" time="80.455" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Maximum Intensity Projection Volume Rendering&#xA;"/>
819
- <testcase name="# Test Maximum Intensity Projection Volume Rendering&#xA; Matching image - delta 0.00%" time="80.455" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Maximum Intensity Projection Volume Rendering&#xA;"/>
820
- <testcase name="# Test Maximum Intensity Projection Volume Rendering&#xA; Image match resolution" time="80.456" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Maximum Intensity Projection Volume Rendering&#xA;"/>
821
- <testcase name="# Test Minimum Intensity Projection Volume Rendering&#xA; vtkOpenGLVolumeMapper MinIP" time="81.259" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Minimum Intensity Projection Volume Rendering&#xA;"/>
822
- <testcase name="# Test Minimum Intensity Projection Volume Rendering&#xA; Matching image - delta 0.00%" time="81.26" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Minimum Intensity Projection Volume Rendering&#xA;"/>
823
- <testcase name="# Test Minimum Intensity Projection Volume Rendering&#xA; Image match resolution" time="81.261" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Minimum Intensity Projection Volume Rendering&#xA;"/>
824
- <testcase name="# Test Volume Rendering with Proportional Component&#xA; vtkOpenGLVolumeMapper ProportionalComponent" time="85.802" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Volume Rendering with Proportional Component&#xA;"/>
825
- <testcase name="# Test Volume Rendering with Proportional Component&#xA; Matching image - delta 0.00%" time="85.802" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Volume Rendering with Proportional Component&#xA;"/>
826
- <testcase name="# Test Volume Rendering with Proportional Component&#xA; Image match resolution" time="85.806" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Volume Rendering with Proportional Component&#xA;"/>
827
- <testcase name="# Test Average Intensity Projection Volume Rendering&#xA; vtkOpenGLVolumeMapper AverageIP" time="87.003" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Average Intensity Projection Volume Rendering&#xA;"/>
828
- <testcase name="# Test Average Intensity Projection Volume Rendering&#xA; Matching image - delta 0.00%" time="87.003" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Average Intensity Projection Volume Rendering&#xA;"/>
829
- <testcase name="# Test Average Intensity Projection Volume Rendering&#xA; Image match resolution" time="87.004" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Average Intensity Projection Volume Rendering&#xA;"/>
830
- <testcase name="# Macro methods algo tests&#xA; populate publicAPI" time="87.004" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
831
- <testcase name="# Macro methods algo tests&#xA; return input data" time="87.005" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
832
- <testcase name="# Macro methods algo tests&#xA; Add two input arrays" time="87.005" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
833
- <testcase name="# Macro methods algo tests&#xA; Subtract two input arrays" time="87.005" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
834
- <testcase name="# Macro methods algo tests&#xA; Multiply two input arrays" time="87.005" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
835
- <testcase name="# Macro methods algo tests&#xA; Divide two input arrays, using outputPort" time="87.006" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
836
- <testcase name="# Macro shouldUpdate returns true if output is deleted&#xA; Trivial producer outputs first input data" time="87.006" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro shouldUpdate returns true if output is deleted&#xA;"/>
837
- <testcase name="# Macro shouldUpdate returns true if output is deleted&#xA; Trivial producer outputs second input data" time="87.006" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro shouldUpdate returns true if output is deleted&#xA;"/>
838
- <testcase name="# onlyIfWebGL&#xA; onlyIfWebGL enabled" time="87.007" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# onlyIfWebGL&#xA;"/>
839
- <testcase name="# Macro methods scalar tests&#xA; macro setget" time="87.007" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
840
- <testcase name="# Macro methods scalar tests&#xA; Initial gets should match defaults" time="87.007" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
841
- <testcase name="# Macro methods scalar tests&#xA; Bool get should match set" time="87.007" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
842
- <testcase name="# Macro methods scalar tests&#xA; Initial gets should match defaults" time="87.007" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
843
- <testcase name="# Macro methods scalar tests&#xA; Int get should match set" time="87.008" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
844
- <testcase name="# Macro methods scalar tests&#xA; mtime should increase after set" time="87.008" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
845
- <testcase name="# Macro methods scalar tests&#xA; mtime should not increase after idempotent set" time="87.008" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
846
- <testcase name="# Macro methods array tests&#xA; Initial gets should match defaults" time="87.009" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
847
- <testcase name="# Macro methods array tests&#xA; Throw if no set method declared" time="87.009" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
848
- <testcase name="# Macro methods array tests&#xA; Array spread set OK" time="87.009" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
849
- <testcase name="# Macro methods array tests&#xA; Array spread set should match get" time="87.009" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
850
- <testcase name="# Macro methods array tests&#xA; OK to set a single array argument" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
851
- <testcase name="# Macro methods array tests&#xA; Array set should match get" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
852
- <testcase name="# Macro methods array tests&#xA; mtime should increase after set" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
853
- <testcase name="# Macro methods array tests&#xA; Invalid number of values should throw" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
854
- <testcase name="# Macro methods array tests&#xA; Keep default value after illegal set" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
855
- <testcase name="# Macro methods array tests&#xA; mtime should not increase after idempotent set" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
856
- <testcase name="# Macro methods array tests&#xA; Invalid number of values should throw" time="87.01" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
857
- <testcase name="# Macro methods array tests&#xA; Keep value after illegal set" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
858
- <testcase name="# Macro methods array tests&#xA; Invalid set with string should throw" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
859
- <testcase name="# Macro methods array tests&#xA; Keep value after illegal set" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
860
- <testcase name="# Macro methods array tests&#xA; OK to set a typed array argument" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
861
- <testcase name="# Macro methods array tests&#xA; setArray should copy input argument" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
862
- <testcase name="# Macro methods array tests&#xA; OK to set no argument" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
863
- <testcase name="# Macro methods array tests&#xA; OK to set not enough argument" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
864
- <testcase name="# Macro methods array tests&#xA; OK to set too-short array argument" time="87.011" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
865
- <testcase name="# Macro methods array tests&#xA; OK to set too short typed array argument" time="87.012" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
866
- <testcase name="# Macro methods array tests&#xA; Invalid number of values should throw" time="87.012" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
867
- <testcase name="# Macro methods array tests&#xA; Too large array should throw" time="87.012" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
868
- <testcase name="# Macro methods array tests&#xA; Too large array should throw" time="87.012" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
869
- <testcase name="# Macro methods enum tests&#xA; Initial gets should match defaults" time="87.013" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
870
- <testcase name="# Macro methods enum tests&#xA; Enum set should match get" time="87.013" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
871
- <testcase name="# Macro methods enum tests&#xA; should be truthy" time="87.013" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
872
- <testcase name="# Macro methods enum tests&#xA; Enum set by index should get matching enum value" time="87.013" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
873
- <testcase name="# Macro methods enum tests&#xA; Setting idempotent value should return false" time="87.013" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
874
- <testcase name="# Macro methods enum tests&#xA; Invalid enum index should throw" time="87.013" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
875
- <testcase name="# Macro methods enum tests&#xA; Enum set out of range should be rejected" time="87.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
876
- <testcase name="# Macro methods enum tests&#xA; Invalid enum string should throw" time="87.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
877
- <testcase name="# Macro methods enum tests&#xA; Enum set string out of range should be rejected" time="87.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
878
- <testcase name="# Macro methods enum tests&#xA; Invalid enum set with array/object should throw" time="87.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
879
- <testcase name="# Macro methods enum tests&#xA; Enum set string out of range should be rejected" time="87.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
880
- <testcase name="# Macro methods object tests&#xA; Get entire model" time="87.015" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
881
- <testcase name="# Macro methods object tests&#xA; Get defaults back test" time="87.015" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
882
- <testcase name="# Macro methods object tests&#xA; Object should be frozen" time="87.015" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
883
- <testcase name="# Macro methods object tests&#xA; should be truthy" time="87.015" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
884
- <testcase name="# Macro methods object tests&#xA; should be truthy" time="87.015" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
885
- <testcase name="# Macro methods object tests&#xA; Object modified fires" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
886
- <testcase name="# Macro methods object tests&#xA; Object modified does not fire after unsubscribe" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
887
- <testcase name="# Macro methods object tests&#xA; Test mult-set" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
888
- <testcase name="# Macro methods object tests&#xA; Float get should match multi-set" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
889
- <testcase name="# Macro methods object tests&#xA; Array multi-set should match get" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
890
- <testcase name="# Macro methods object tests&#xA; should be truthy" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
891
- <testcase name="# Macro methods object tests&#xA; should be truthy" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
892
- <testcase name="# Macro methods object tests&#xA; should be falsy" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
893
- <testcase name="# Macro methods object tests&#xA; should be strictly equal" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
894
- <testcase name="# Macro methods object tests&#xA; should not throw" time="87.016" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
895
- <testcase name="# Macro methods object tests&#xA; All calls should do nothing after delete" time="87.017" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
896
- <testcase name="# Macro methods event tests&#xA; cbAbort1 should be called first" time="87.017" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
897
- <testcase name="# Macro methods event tests&#xA; cbAbort2 should be called second" time="87.017" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
898
- <testcase name="# Macro methods event tests&#xA; Only 2 callbacks should be invoked, not 3" time="87.017" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
899
- <testcase name="# Macro methods event tests&#xA; cbPriority2 should be called first" time="87.017" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
900
- <testcase name="# Macro methods event tests&#xA; cbPriority2 should be called first" time="87.017" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
901
- <testcase name="# Macro methods event tests&#xA; cbPriority1 should be called second" time="87.018" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
902
- <testcase name="# Macro methods event tests&#xA; cbPriority0 should be called third" time="87.119" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
903
- <testcase name="# Macro methods event tests&#xA; cbPriorityLast should be called last after 101ms" time="87.119" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
904
- <testcase name="# Macro methods event tests&#xA; cbPriority2 should be called exactly twice" time="87.12" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
905
- <testcase name="# Macro methods keystore tests&#xA; key1 should exist in keystore" time="87.12" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
906
- <testcase name="# Macro methods keystore tests&#xA; key2 should exist in keystore" time="87.12" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
907
- <testcase name="# Macro methods keystore tests&#xA; key3 should exist in keystore" time="87.12" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
908
- <testcase name="# Macro methods keystore tests&#xA; Delete key2 should succeed" time="87.12" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
909
- <testcase name="# Macro methods keystore tests&#xA; There should be no keys after clearing" time="87.131" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
910
- <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure the class definition exist" time="87.131" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
911
- <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure the instance exist" time="87.132" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
912
- <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure we can get serialize data" time="87.132" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
913
- <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure we can get deserialize data" time="87.132" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
914
- <testcase name="# Test vtkDataArray serialization/deserialization&#xA; We have two different instances" time="87.132" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
915
- <testcase name="# Test vtkDataArray serialization/deserialization&#xA; But same serialized content" time="87.133" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
916
- <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure the class definition exist" time="87.133" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
917
- <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure the instance exist" time="87.133" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
918
- <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure we can get serialize data" time="87.133" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
919
- <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure we can get deserialize data" time="87.134" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
920
- <testcase name="# Test vtkPoints serialization/deserialization&#xA; We have two different instances" time="87.134" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
921
- <testcase name="# Test vtkPoints serialization/deserialization&#xA; But same serialized content" time="87.134" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
922
- <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure the class definition exist" time="87.135" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
923
- <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure the instance exist" time="87.136" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
924
- <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure we can get serialize data" time="87.136" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
925
- <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure we can get deserialize data" time="87.136" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
926
- <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; We have two different instances" time="87.136" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
927
- <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; But same serialized content" time="87.137" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
928
- <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure the class definition exist" time="87.137" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
929
- <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure the instance exist" time="87.137" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
930
- <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure we can get serialize data" time="87.137" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
931
- <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure we can get deserialize data" time="87.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
932
- <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; We have two different instances" time="87.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
933
- <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; But same serialized content" time="87.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
934
- <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure the class definition exist" time="87.139" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
935
- <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure the instance exist" time="87.139" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
936
- <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure we can get serialize data" time="87.14" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
937
- <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure we can get deserialize data" time="87.141" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
938
- <testcase name="# Test vtkPolyData serialization/deserialization&#xA; We have two different instances" time="87.141" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
939
- <testcase name="# Test vtkPolyData serialization/deserialization&#xA; But same serialized content" time="87.143" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
940
- <testcase name="# Proxy activation via config&#xA; No initial active source" time="87.143" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via config&#xA;"/>
941
- <testcase name="# Proxy activation via config&#xA; Active source set after proxy creation" time="87.144" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via config&#xA;"/>
942
- <testcase name="# Proxy activation via .activate()&#xA; No initial active source" time="87.144" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
943
- <testcase name="# Proxy activation via .activate()&#xA; No active source after proxy creation" time="87.144" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
944
- <testcase name="# Proxy activation via .activate()&#xA; Proxy manager should be modified after proxy activation" time="87.144" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
945
- <testcase name="# Proxy activation via .activate()&#xA; Active source set" time="87.673" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
946
- <testcase name="# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA; Matching image - delta 0.00%" time="87.673" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA;"/>
947
- <testcase name="# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA; Image match resolution" time="87.871" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA;"/>
948
- <testcase name="# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA; Matching image - delta 0.00%" time="87.871" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA;"/>
949
- <testcase name="# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA; Image match resolution" time="88.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA;"/>
950
- <testcase name="# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA; Matching image - delta 0.00%" time="88.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA;"/>
951
- <testcase name="# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA; Image match resolution" time="88.326" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA;"/>
952
- <testcase name="# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA; Matching image - delta 0.19%" time="88.326" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA;"/>
953
- <testcase name="# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA; Image match resolution" time="88.334" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA;"/>
954
- <testcase name="# Test boundPlane natural basis simple&#xA; should be truthy" time="88.334" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis simple&#xA;"/>
955
- <testcase name="# Test boundPlane natural basis simple&#xA; should be truthy" time="88.334" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis simple&#xA;"/>
956
- <testcase name="# Test boundPlane natural basis simple&#xA; should be truthy" time="88.338" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis simple&#xA;"/>
957
- <testcase name="# Test boundPlane natural basis with offset&#xA; should be truthy" time="88.338" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis with offset&#xA;"/>
958
- <testcase name="# Test boundPlane natural basis with offset&#xA; should be truthy" time="88.338" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis with offset&#xA;"/>
959
- <testcase name="# Test boundPlane natural basis with offset&#xA; should be truthy" time="88.34" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis with offset&#xA;"/>
960
- <testcase name="# Test boundPlane oriented&#xA; should be truthy" time="88.34" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane oriented&#xA;"/>
961
- <testcase name="# Test boundPlane oriented&#xA; should be truthy" time="88.34" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane oriented&#xA;"/>
962
- <testcase name="# Test boundPlane oriented&#xA; should be truthy" time="88.342" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane oriented&#xA;"/>
963
- <testcase name="# Test boundPlane no intersection&#xA; should be truthy" time="88.342" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane no intersection&#xA;"/>
964
- <testcase name="# Test boundPlane no intersection&#xA; should be truthy" time="88.343" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane no intersection&#xA;"/>
965
- <testcase name="# Test boundPlane no intersection&#xA; should be truthy" time="88.343" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane no intersection&#xA;"/>
966
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.343" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
967
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.343" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
968
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.343" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
969
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
970
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
971
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
972
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
973
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
974
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
975
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
976
- <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
977
- <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="88.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
978
- <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="88.345" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
979
- <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="88.345" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
980
- <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="88.345" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
981
- <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="89.276" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
982
- <testcase name="# Initialization&#xA; Camera focal point on 4" time="89.277" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
983
- <testcase name="# Initialization&#xA; Camera view up on 4" time="89.277" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
984
- <testcase name="# Initialization&#xA; Plane origin on 4" time="89.277" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
985
- <testcase name="# Initialization&#xA; Plane point 1 on 4" time="89.277" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
986
- <testcase name="# Initialization&#xA; Plane point 2 on 4" time="89.28" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
987
- <testcase name="# Initialization&#xA; Camera focal point on 5" time="89.28" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
988
- <testcase name="# Initialization&#xA; Camera view up on 5" time="89.28" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
989
- <testcase name="# Initialization&#xA; Plane origin on 5" time="89.28" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
990
- <testcase name="# Initialization&#xA; Plane point 1 on 5" time="89.28" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
991
- <testcase name="# Initialization&#xA; Plane point 2 on 5" time="89.283" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
992
- <testcase name="# Initialization&#xA; Camera focal point on 6" time="89.283" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
993
- <testcase name="# Initialization&#xA; Camera view up on 6" time="89.283" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
994
- <testcase name="# Initialization&#xA; Plane origin on 6" time="89.283" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
995
- <testcase name="# Initialization&#xA; Plane point 1 on 6" time="89.283" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
996
- <testcase name="# Initialization&#xA; Plane point 2 on 6" time="89.286" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
997
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera focal point on 4" time="89.286" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
998
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera view up on 4" time="89.287" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
999
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane origin on 4" time="89.287" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1000
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 1 on 4" time="89.287" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1001
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 2 on 4" time="89.289" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1002
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera focal point on 5" time="89.289" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1003
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera view up on 5" time="89.289" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1004
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane origin on 5" time="89.289" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1005
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 1 on 5" time="89.29" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1006
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 2 on 5" time="89.292" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1007
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera focal point on 6" time="89.292" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1008
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera view up on 6" time="89.292" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1009
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane origin on 6" time="89.292" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1010
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 1 on 6" time="89.292" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1011
- <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 2 on 6" time="90.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1012
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera focal point on 4" time="90.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1013
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera view up on 4" time="90.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1014
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane origin on 4" time="90.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1015
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 1 on 4" time="90.213" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1016
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 2 on 4" time="90.215" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1017
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera focal point on 5" time="90.216" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1018
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera view up on 5" time="90.216" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1019
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane origin on 5" time="90.216" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1020
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 1 on 5" time="90.216" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1021
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 2 on 5" time="90.218" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1022
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera focal point on 6" time="90.218" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1023
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera view up on 6" time="90.219" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1024
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane origin on 6" time="90.219" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1025
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 1 on 6" time="90.219" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1026
- <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 2 on 6" time="90.222" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1027
- <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="90.222" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1028
- <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="90.222" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1029
- <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="90.222" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1030
- <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="90.93" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1031
- <testcase name="# Test vtkSplineWidget rendering and picking&#xA; Matching image - delta 0.00%" time="90.93" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1032
- <testcase name="# Test vtkSplineWidget rendering and picking&#xA; Image match resolution" time="91.053" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1033
- <testcase name="# Test vtkSplineWidget rendering and picking&#xA; should be strictly equal" time="91.054" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1034
- <testcase name="# Test vtkSplineWidget rendering and picking&#xA; should be strictly equal" time="91.059" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
6
+ <testcase name=" Matching image - delta 0.10%" time="0.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64)."/>
7
+ <testcase name=" Image match resolution" time="0.394" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64)."/>
8
+ <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.394" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
9
+ <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.395" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
10
+ <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.395" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
11
+ <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.395" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
12
+ <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.396" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
13
+ <testcase name="# Test angleBetweenVector&#xA; should be strictly equal" time="0.396" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test angleBetweenVector&#xA;"/>
14
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.397" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
15
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.397" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
16
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.397" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
17
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.397" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
18
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.397" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
19
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.398" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
20
+ <testcase name="# Test signedAngleBetweenVector&#xA; should be strictly equal" time="0.398" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test signedAngleBetweenVector&#xA;"/>
21
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1)" time="0.398" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
22
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1, 1)" time="0.398" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
23
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4)" time="0.399" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
24
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4, 0)" time="0.399" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
25
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4, 1)" time="0.399" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
26
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.4, 2)" time="0.399" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
27
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.46, 0)" time="0.399" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
28
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.46, 1)" time="0.399" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
29
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.46, 2)" time="0.4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
30
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(123.46, 0)" time="0.4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
31
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(123.46, 1)" time="0.4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
32
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(123.46, 2)" time="0.4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
33
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(6.06627640054528e-14, 6)" time="0.4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
34
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(-6.06627640054528e-14, 6)" time="0.4" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
35
+ <testcase name="# Test roundNumber&#xA; vtkMath.roundNumber(1.23456e4, 2)" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test roundNumber&#xA;"/>
36
+ <testcase name="# Test areEquals&#xA; same vec1" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
37
+ <testcase name="# Test areEquals&#xA; same vec2" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
38
+ <testcase name="# Test areEquals&#xA; same vec2" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
39
+ <testcase name="# Test areEquals&#xA; larger vec" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
40
+ <testcase name="# Test areEquals&#xA; smaller vec" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
41
+ <testcase name="# Test areEquals&#xA; exact comparison for same vec" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
42
+ <testcase name="# Test areEquals&#xA; exact(0) comparison for diff vec" time="0.401" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
43
+ <testcase name="# Test areEquals&#xA; approx(1e-8) comparison for diff vec" time="0.402" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
44
+ <testcase name="# Test areEquals&#xA; approx (2e-7) comparison for diff vec" time="0.402" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
45
+ <testcase name="# Test areEquals&#xA; approx (1e-6) comparison for diff vec" time="0.403" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test areEquals&#xA;"/>
46
+ <testcase name="# Test vtkMatrixBuilder rotateFromDirections&#xA; should be truthy" time="0.403" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkMatrixBuilder rotateFromDirections&#xA;"/>
47
+ <testcase name="# Test vtkMatrixBuilder rotateFromDirections&#xA; should be truthy" time="0.403" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkMatrixBuilder rotateFromDirections&#xA;"/>
48
+ <testcase name="# Test vtkMatrixBuilder rotateFromDirections&#xA; should be truthy" time="0.404" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkMatrixBuilder rotateFromDirections&#xA;"/>
49
+ <testcase name="# Test LookupTable setTable&#xA; vtkLookupTable TestSetTable" time="0.406" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
50
+ <testcase name="# Test LookupTable setTable&#xA; should be strictly equal" time="0.978" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
51
+ <testcase name="# Test LookupTable setTable&#xA; Matching image - delta 0.00%" time="0.978" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
52
+ <testcase name="# Test LookupTable setTable&#xA; Image match resolution" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test LookupTable setTable&#xA;"/>
53
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
54
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
55
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
56
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
57
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
58
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
59
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.986" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
60
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.986" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
61
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.986" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
62
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.986" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
63
+ <testcase name="# Test vtkBoundingBox intersectBox&#xA; should be strictly equal" time="0.987" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectBox&#xA;"/>
64
+ <testcase name="# Test vtkBoundingBox intersectPlane&#xA; should be strictly equal" time="0.987" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectPlane&#xA;"/>
65
+ <testcase name="# Test vtkBoundingBox intersectPlane&#xA; should be strictly equal" time="0.987" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectPlane&#xA;"/>
66
+ <testcase name="# Test vtkBoundingBox intersectPlane&#xA; should be strictly equal" time="0.987" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBoundingBox intersectPlane&#xA;"/>
67
+ <testcase name="# Test vtkBox instance&#xA; Make sure the class definition exists" time="0.988" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox instance&#xA;"/>
68
+ <testcase name="# Test vtkBox instance&#xA; should be truthy" time="0.988" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox instance&#xA;"/>
69
+ <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.989" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
70
+ <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.989" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
71
+ <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.989" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
72
+ <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.989" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
73
+ <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.989" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
74
+ <testcase name="# Test vtkBox bounds&#xA; should be strictly equal" time="0.99" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox bounds&#xA;"/>
75
+ <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.99" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
76
+ <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.99" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
77
+ <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.99" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
78
+ <testcase name="# Test vtkBox evaluateFunction&#xA; should be strictly equal" time="0.991" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkBox evaluateFunction&#xA;"/>
79
+ <testcase name="# Test vtkCell instance&#xA; Make sure the class definition exists" time="0.991" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell instance&#xA;"/>
80
+ <testcase name="# Test vtkCell instance&#xA; should be truthy" time="0.992" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell instance&#xA;"/>
81
+ <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.993" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
82
+ <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.993" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
83
+ <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.993" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
84
+ <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.993" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
85
+ <testcase name="# Test vtkCell initialize without pointsIds&#xA; should be strictly equal" time="0.994" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize without pointsIds&#xA;"/>
86
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.994" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
87
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.994" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
88
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.994" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
89
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.994" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
90
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should not be strictly equal" time="0.995" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
91
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be strictly equal" time="0.995" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
92
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be deeply equivalent" time="0.995" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
93
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be deeply equivalent" time="0.996" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
94
+ <testcase name="# Test vtkCell initialize with pointsIds&#xA; should be deeply equivalent" time="0.996" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell initialize with pointsIds&#xA;"/>
95
+ <testcase name="# Test vtkCell deepCopy&#xA; should not be strictly equal" time="0.997" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell deepCopy&#xA;"/>
96
+ <testcase name="# Test vtkCell deepCopy&#xA; should be deeply equivalent" time="0.997" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCell deepCopy&#xA;"/>
97
+ <testcase name="# Test Cone Implicit Function&#xA; Cone Implicit Function" time="1.637" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Cone Implicit Function&#xA;"/>
98
+ <testcase name="# Test Cone Implicit Function&#xA; Matching image - delta 0.00%" time="1.637" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Cone Implicit Function&#xA;"/>
99
+ <testcase name="# Test Cone Implicit Function&#xA; Image match resolution" time="1.644" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Cone Implicit Function&#xA;"/>
100
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Make sure the class definition exists" time="1.645" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
101
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Make sure the newInstance method exists." time="1.645" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
102
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default number of arrays should be 0" time="1.645" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
103
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Scalars should be null" time="1.645" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
104
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding scalars empty DSA should return index of 0" time="1.646" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
105
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting scalars should return 0 (the index of the array)." time="1.646" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
106
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting scalars with an invalid name should return -1." time="1.646" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
107
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting scalars with an invalid name should reset the attribute." time="1.646" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
108
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Vectors should be null" time="1.646" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
109
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding vectors empty DSA should return index of 1" time="1.647" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
110
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting vectors should return 1 (the index of the array)." time="1.647" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
111
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting vectors with an invalid name should return -1." time="1.647" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
112
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting vectors with an invalid name should reset the attribute." time="1.647" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
113
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Normals should be null" time="1.647" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
114
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding normals empty DSA should return index of 2" time="1.647" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
115
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting normals should return 2 (the index of the array)." time="1.648" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
116
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting normals with an invalid name should return -1." time="1.648" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
117
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting normals with an invalid name should reset the attribute." time="1.648" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
118
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default TCoords should be null" time="1.648" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
119
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding tcoords empty DSA should return index of 3" time="1.648" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
120
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tcoords should return 3 (the index of the array)." time="1.649" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
121
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tcoords with an invalid name should return -1." time="1.649" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
122
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tcoords with an invalid name should reset the attribute." time="1.649" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
123
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default Tensors should be null" time="1.649" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
124
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding tensors empty DSA should return index of 4" time="1.649" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
125
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tensors should return 4 (the index of the array)." time="1.649" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
126
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tensors with an invalid name should return -1." time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
127
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting tensors with an invalid name should reset the attribute." time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
128
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default GlobalIds should be null" time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
129
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding globalids empty DSA should return index of 5" time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
130
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting globalids should return 5 (the index of the array)." time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
131
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting globalids with an invalid name should return -1." time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
132
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting globalids with an invalid name should reset the attribute." time="1.65" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
133
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Default PedigreeIds should be null" time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
134
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Adding pedigreeids empty DSA should return index of 6" time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
135
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting pedigreeids should return 6 (the index of the array)." time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
136
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting pedigreeids with an invalid name should return -1." time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
137
+ <testcase name="# Test vtkDataSetAttributes instance&#xA; Setting pedigreeids with an invalid name should reset the attribute." time="1.651" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataSetAttributes instance&#xA;"/>
138
+ <testcase name="# Test vtkLine instance&#xA; Make sure the class definition exists" time="1.652" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine instance&#xA;"/>
139
+ <testcase name="# Test vtkLine instance&#xA; should be truthy" time="1.653" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine instance&#xA;"/>
140
+ <testcase name="# Test vtkLine static::intersection&#xA; Points on line" time="1.653" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
141
+ <testcase name="# Test vtkLine static::intersection&#xA; Points on line" time="1.653" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
142
+ <testcase name="# Test vtkLine static::intersection&#xA; Points on line" time="1.653" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
143
+ <testcase name="# Test vtkLine static::intersection&#xA; Intersection" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
144
+ <testcase name="# Test vtkLine static::intersection&#xA; should be strictly equal" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
145
+ <testcase name="# Test vtkLine static::intersection&#xA; should be strictly equal" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
146
+ <testcase name="# Test vtkLine static::intersection&#xA; No intersection" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::intersection&#xA;"/>
147
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; Invalid line" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
148
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.654" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
149
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
150
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; On line" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
151
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
152
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
153
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
154
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
155
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.655" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
156
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
157
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
158
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
159
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
160
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be strictly equal" time="1.656" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
161
+ <testcase name="# Test vtkLine static::distanceToLine&#xA; should be deeply equivalent" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine static::distanceToLine&#xA;"/>
162
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.657" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
163
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be deeply equivalent" time="1.658" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
164
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.658" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
165
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.658" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
166
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be deeply equivalent" time="1.658" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
167
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.659" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
168
+ <testcase name="# Test vtkLine intersectWithLine&#xA; should be strictly equal" time="1.66" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLine intersectWithLine&#xA;"/>
169
+ <testcase name="# Test vtkPlane instance&#xA; Make sure the class definition exists" time="1.66" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane instance&#xA;"/>
170
+ <testcase name="# Test vtkPlane instance&#xA; should be truthy" time="1.66" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane instance&#xA;"/>
171
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
172
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
173
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
174
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
175
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
176
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
177
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
178
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
179
+ <testcase name="# Test vtkPlane projectVector&#xA; should be strictly equal" time="1.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectVector&#xA;"/>
180
+ <testcase name="# Test vtkPlane projectPoint&#xA; should be strictly equal" time="1.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectPoint&#xA;"/>
181
+ <testcase name="# Test vtkPlane projectPoint&#xA; should be strictly equal" time="1.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectPoint&#xA;"/>
182
+ <testcase name="# Test vtkPlane projectPoint&#xA; should be strictly equal" time="1.664" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane projectPoint&#xA;"/>
183
+ <testcase name="# Test vtkPlane DistanceToPlane&#xA; should be strictly equal" time="1.664" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane DistanceToPlane&#xA;"/>
184
+ <testcase name="# Test vtkPlane DistanceToPlane&#xA; should be strictly equal" time="1.664" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane DistanceToPlane&#xA;"/>
185
+ <testcase name="# Test vtkPlane Push&#xA; should be strictly equal" time="1.664" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane Push&#xA;"/>
186
+ <testcase name="# Test vtkPlane Push&#xA; should be strictly equal" time="1.664" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane Push&#xA;"/>
187
+ <testcase name="# Test vtkPlane Push&#xA; should be strictly equal" time="1.665" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane Push&#xA;"/>
188
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.665" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
189
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.665" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
190
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.665" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
191
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.665" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
192
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
193
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
194
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
195
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
196
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
197
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
198
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
199
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
200
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
201
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.666" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
202
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.667" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
203
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.667" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
204
+ <testcase name="# Test vtkPlane intersectWithLine&#xA; should be strictly equal" time="1.667" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithLine&#xA;"/>
205
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
206
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
207
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
208
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
209
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
210
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
211
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.668" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
212
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
213
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
214
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
215
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
216
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
217
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
218
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.669" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
219
+ <testcase name="# Test vtkPlane intersectWithPlane&#xA; should be strictly equal" time="1.67" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane intersectWithPlane&#xA;"/>
220
+ <testcase name="# Test vtkPlane evaluateFunction&#xA; should be strictly equal" time="1.67" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane evaluateFunction&#xA;"/>
221
+ <testcase name="# Test vtkPlane evaluateFunction&#xA; should be strictly equal" time="1.67" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane evaluateFunction&#xA;"/>
222
+ <testcase name="# Test vtkPlane evaluateFunction&#xA; should be strictly equal" time="1.67" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlane evaluateFunction&#xA;"/>
223
+ <testcase name="# Test vtkPolyData instance&#xA; Make sure the class definition exists" time="1.671" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData instance&#xA;"/>
224
+ <testcase name="# Test vtkPolyData instance&#xA; should be truthy" time="1.678" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData instance&#xA;"/>
225
+ <testcase name="# Test vtkPolyData cells&#xA; Line cell should be made of the number of points plus 1" time="1.678" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData cells&#xA;"/>
226
+ <testcase name="# Test vtkPolyData cells&#xA; Triangle cells should be made of 3 points" time="1.686" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData cells&#xA;"/>
227
+ <testcase name="# Test vtkPolyData cells&#xA; should be deeply equivalent" time="1.687" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData cells&#xA;"/>
228
+ <testcase name="# Test vtkTriangle instance&#xA; Make sure the class definition exists" time="1.687" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle instance&#xA;"/>
229
+ <testcase name="# Test vtkTriangle instance&#xA; should be truthy" time="1.687" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle instance&#xA;"/>
230
+ <testcase name="# Test vtkTriangle static::computeNormalDirection&#xA; should be deeply equivalent" time="1.687" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormalDirection&#xA;"/>
231
+ <testcase name="# Test vtkTriangle static::computeNormalDirection&#xA; should be deeply equivalent" time="1.687" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormalDirection&#xA;"/>
232
+ <testcase name="# Test vtkTriangle static::computeNormalDirection&#xA; should be deeply equivalent" time="1.688" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormalDirection&#xA;"/>
233
+ <testcase name="# Test vtkTriangle static::computeNormal&#xA; should be deeply equivalent" time="1.688" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormal&#xA;"/>
234
+ <testcase name="# Test vtkTriangle static::computeNormal&#xA; should be deeply equivalent" time="1.688" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormal&#xA;"/>
235
+ <testcase name="# Test vtkTriangle static::computeNormal&#xA; should be deeply equivalent" time="1.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle static::computeNormal&#xA;"/>
236
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
237
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
238
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
239
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
240
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
241
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
242
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.692" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
243
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.693" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
244
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.693" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
245
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.693" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
246
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.693" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
247
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.693" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
248
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be strictly equal" time="1.694" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
249
+ <testcase name="# Test vtkTriangle intersectWithLine&#xA; should be deeply equivalent" time="1.694" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle intersectWithLine&#xA;"/>
250
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.694" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
251
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.695" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
252
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.695" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
253
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.695" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
254
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.695" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
255
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.695" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
256
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.696" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
257
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.696" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
258
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.696" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
259
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be strictly equal" time="1.696" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
260
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.696" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
261
+ <testcase name="# Test vtkTriangle evaluatePosition&#xA; should be deeply equivalent" time="1.702" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTriangle evaluatePosition&#xA;"/>
262
+ <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.702" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
263
+ <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.702" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
264
+ <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.702" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
265
+ <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.703" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
266
+ <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.703" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
267
+ <testcase name="# Test vtkCutter cutCube&#xA; should be strictly equal" time="1.703" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCutter cutCube&#xA;"/>
268
+ <testcase name="# Test vtkAppendPolyData instance&#xA; Make sure the class definition exists." time="1.704" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData instance&#xA;"/>
269
+ <testcase name="# Test vtkAppendPolyData instance&#xA; Make sure an instance can be created." time="1.71" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData instance&#xA;"/>
270
+ <testcase name="# Test vtkAppendPolyData execution&#xA; Make sure the number of points is correct." time="1.71" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData execution&#xA;"/>
271
+ <testcase name="# Test vtkAppendPolyData execution&#xA; Make sure the output data type is correct." time="1.711" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData execution&#xA;"/>
272
+ <testcase name="# Test vtkAppendPolyData execution&#xA; Make sure the number of polys is correct." time="1.711" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData execution&#xA;"/>
273
+ <testcase name="# Test vtkAppendPolyData rendering&#xA; vtkAppendPolyData Rendering" time="2.184" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData rendering&#xA;"/>
274
+ <testcase name="# Test vtkAppendPolyData rendering&#xA; Matching image - delta 0.00%" time="2.184" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData rendering&#xA;"/>
275
+ <testcase name="# Test vtkAppendPolyData rendering&#xA; Image match resolution" time="2.2" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAppendPolyData rendering&#xA;"/>
276
+ <testcase name="# Test vtkCalculator instance&#xA; Make sure the class definition exists." time="2.2" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator instance&#xA;"/>
277
+ <testcase name="# Test vtkCalculator instance&#xA; Make sure an instance can be created." time="2.204" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator instance&#xA;"/>
278
+ <testcase name="# Test vtkCalculator execution&#xA; Output dataset exists" time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
279
+ <testcase name="# Test vtkCalculator execution&#xA; The output dataset should be a vtkPolydata" time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
280
+ <testcase name="# Test vtkCalculator execution&#xA; The number of points did not change between input 66 and output 66" time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
281
+ <testcase name="# Test vtkCalculator execution&#xA; Output point-scalars array exists." time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
282
+ <testcase name="# Test vtkCalculator execution&#xA; Output point-scalars is &quot;sine wave&quot;." time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
283
+ <testcase name="# Test vtkCalculator execution&#xA; Output field-data array exists." time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
284
+ <testcase name="# Test vtkCalculator execution&#xA; The uniform result variable should be 22.55; got 22.549999237060547." time="2.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCalculator execution&#xA;"/>
285
+ <testcase name="# Test vtkClosedPolyLineToSurfaceFilter instance&#xA; Make sure the class defination exists" time="2.206" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkClosedPolyLineToSurfaceFilter instance&#xA;"/>
286
+ <testcase name="# Test vtkClosedPolyLineToSurfaceFilter instance&#xA; Make sure an instance can be created." time="2.21" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkClosedPolyLineToSurfaceFilter instance&#xA;"/>
287
+ <testcase name="# Test vtkClosedPolyLineToSurfaceFilter execution&#xA; Polys should have a single segment with 96 point indices" time="2.211" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkClosedPolyLineToSurfaceFilter execution&#xA;"/>
288
+ <testcase name="# Test vtkImageStreamline instance&#xA; Make sure the class definition exist" time="2.211" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
289
+ <testcase name="# Test vtkImageStreamline instance&#xA; Make sure the instance exist" time="2.211" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
290
+ <testcase name="# Test vtkImageStreamline instance&#xA; Default integrationStep should be 1" time="2.211" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
291
+ <testcase name="# Test vtkImageStreamline instance&#xA; Default MaximumNumberOfSteps should be 1000" time="2.211" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
292
+ <testcase name="# Test vtkImageStreamline instance&#xA; Updated value of integrationStep should be 0.1" time="2.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline instance&#xA;"/>
293
+ <testcase name="# Test vtkImageStreamline execution&#xA; Output dataset exist" time="2.361" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline execution&#xA;"/>
294
+ <testcase name="# Test vtkImageStreamline execution&#xA; The output dataset should be a vtkPolydata" time="2.362" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline execution&#xA;"/>
295
+ <testcase name="# Test vtkImageStreamline execution&#xA; The number of points should be 2228" time="2.362" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageStreamline execution&#xA;"/>
296
+ <testcase name="# Test MultipleBonds&#xA; should be truthy" time="2.98" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MultipleBonds&#xA;"/>
297
+ <testcase name="# Test MultipleBonds&#xA; Matching image - delta 0.01%" time="2.98" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MultipleBonds&#xA;"/>
298
+ <testcase name="# Test MultipleBonds&#xA; Image match resolution" time="3.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MultipleBonds&#xA;"/>
299
+ <testcase name="# Test vtkPaintFilter ellipse on images with large spacing&#xA; Matching image - delta 0.00%" time="3.985" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPaintFilter ellipse on images with large spacing&#xA;"/>
300
+ <testcase name="# Test vtkPaintFilter ellipse on images with large spacing&#xA; Image match resolution" time="3.988" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPaintFilter ellipse on images with large spacing&#xA;"/>
301
+ <testcase name="# Test vtkTubeFilter instance&#xA; Make sure the class definition exists." time="3.989" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter instance&#xA;"/>
302
+ <testcase name="# Test vtkTubeFilter instance&#xA; Make sure an instance can be created." time="3.996" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter instance&#xA;"/>
303
+ <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output data type is double." time="3.996" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
304
+ <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of points is correct without capping." time="3.996" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
305
+ <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of normals is correct without capping." time="3.998" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
306
+ <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output data type is float." time="3.998" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
307
+ <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of points is correct with capping." time="3.998" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
308
+ <testcase name="# Test vtkTubeFilter execution&#xA; Make sure the output number of normals is correct with capping." time="3.998" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter execution&#xA;"/>
309
+ <testcase name="# Test vtkTubeFilter rendering&#xA; vtkTubeFilter Rendering" time="4.726" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter rendering&#xA;"/>
310
+ <testcase name="# Test vtkTubeFilter rendering&#xA; Matching image - delta 0.00%" time="4.726" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter rendering&#xA;"/>
311
+ <testcase name="# Test vtkTubeFilter rendering&#xA; Image match resolution" time="4.747" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter rendering&#xA;"/>
312
+ <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the output number of points is correct without capping." time="4.747" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
313
+ <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the length of the radius array is correct." time="4.747" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
314
+ <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the length of the color array is correct." time="4.748" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
315
+ <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the array name to color by is correct." time="4.749" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
316
+ <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the scalar mode is correct." time="4.749" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
317
+ <testcase name="# Test vtkTubeFilter colorMapping&#xA; Make sure the color mode is correct." time="5.441" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter colorMapping&#xA;"/>
318
+ <testcase name="# Test vtkTubeFilter color map rendering&#xA; Matching image - delta 0.00%" time="5.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter color map rendering&#xA;"/>
319
+ <testcase name="# Test vtkTubeFilter color map rendering&#xA; Image match resolution" time="5.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTubeFilter color map rendering&#xA;"/>
320
+ <testcase name="# Test vtkWarpScalar instance&#xA; Make sure the class definition exist" time="5.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
321
+ <testcase name="# Test vtkWarpScalar instance&#xA; Make sure the instance exist" time="5.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
322
+ <testcase name="# Test vtkWarpScalar instance&#xA; Default ScaleFactor should be 1" time="5.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
323
+ <testcase name="# Test vtkWarpScalar instance&#xA; Default UseNormal should be false" time="5.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
324
+ <testcase name="# Test vtkWarpScalar instance&#xA; Default xyPlane should be false" time="5.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
325
+ <testcase name="# Test vtkWarpScalar instance&#xA; Default normal should be [0, 0, 1]" time="5.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
326
+ <testcase name="# Test vtkWarpScalar instance&#xA; Updated value of ScaleFactor should be 2.5" time="5.455" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar instance&#xA;"/>
327
+ <testcase name="# Test vtkWarpScalar execution&#xA; Output dataset exist" time="5.455" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar execution&#xA;"/>
328
+ <testcase name="# Test vtkWarpScalar execution&#xA; The output dataset should be a vtkPolydata" time="5.455" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar execution&#xA;"/>
329
+ <testcase name="# Test vtkWarpScalar execution&#xA; The number of points do not change between input 50 and output 50" time="5.456" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkWarpScalar execution&#xA;"/>
330
+ <testcase name="# Test vtkConcentricCylinderSource Rendering&#xA; vtkConcentricCylinderSource Rendering" time="6.027" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConcentricCylinderSource Rendering&#xA;"/>
331
+ <testcase name="# Test vtkConcentricCylinderSource Rendering&#xA; Matching image - delta 0.00%" time="6.027" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConcentricCylinderSource Rendering&#xA;"/>
332
+ <testcase name="# Test vtkConcentricCylinderSource Rendering&#xA; Image match resolution" time="6.032" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConcentricCylinderSource Rendering&#xA;"/>
333
+ <testcase name="# Test vtkConeSource Rendering&#xA; vtkConeSource Rendering" time="6.521" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConeSource Rendering&#xA;"/>
334
+ <testcase name="# Test vtkConeSource Rendering&#xA; Matching image - delta 0.00%" time="6.521" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConeSource Rendering&#xA;"/>
335
+ <testcase name="# Test vtkConeSource Rendering&#xA; Image match resolution" time="6.523" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkConeSource Rendering&#xA;"/>
336
+ <testcase name="# Test vtkCubeSource Rendering&#xA; vtkCubeSource Rendering" time="7.711" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCubeSource Rendering&#xA;"/>
337
+ <testcase name="# Test vtkCubeSource Rendering&#xA; Matching image - delta 0.62%" time="7.711" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCubeSource Rendering&#xA;"/>
338
+ <testcase name="# Test vtkCubeSource Rendering&#xA; Image match resolution" time="7.714" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCubeSource Rendering&#xA;"/>
339
+ <testcase name="# Test vtkCylinderSource Rendering&#xA; vtkCylinderSource Rendering" time="8.202" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCylinderSource Rendering&#xA;"/>
340
+ <testcase name="# Test vtkCylinderSource Rendering&#xA; Matching image - delta 0.00%" time="8.203" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCylinderSource Rendering&#xA;"/>
341
+ <testcase name="# Test vtkCylinderSource Rendering&#xA; Image match resolution" time="8.205" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCylinderSource Rendering&#xA;"/>
342
+ <testcase name="# Test vtkLineSource Rendering&#xA; vtkLineSource Rendering" time="8.704" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLineSource Rendering&#xA;"/>
343
+ <testcase name="# Test vtkLineSource Rendering&#xA; Matching image - delta 0.24%" time="8.704" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLineSource Rendering&#xA;"/>
344
+ <testcase name="# Test vtkLineSource Rendering&#xA; Image match resolution" time="8.705" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLineSource Rendering&#xA;"/>
345
+ <testcase name="# Test vtkPlaneSource Rendering&#xA; vtkPlaneSource Rendering" time="9.253" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlaneSource Rendering&#xA;"/>
346
+ <testcase name="# Test vtkPlaneSource Rendering&#xA; Matching image - delta 0.00%" time="9.253" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlaneSource Rendering&#xA;"/>
347
+ <testcase name="# Test vtkPlaneSource Rendering&#xA; Image match resolution" time="9.257" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPlaneSource Rendering&#xA;"/>
348
+ <testcase name="# Test vtkPointSource Rendering&#xA; vtkPointSource Rendering" time="9.768" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointSource Rendering&#xA;"/>
349
+ <testcase name="# Test vtkPointSource Rendering&#xA; Matching image - delta 0.00%" time="9.768" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointSource Rendering&#xA;"/>
350
+ <testcase name="# Test vtkPointSource Rendering&#xA; Image match resolution" time="9.775" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointSource Rendering&#xA;"/>
351
+ <testcase name="# Test vtkTextureMapToPlane instance&#xA; Make sure the class definition exists" time="9.775" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane instance&#xA;"/>
352
+ <testcase name="# Test vtkTextureMapToPlane instance&#xA; should be truthy" time="9.78" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane instance&#xA;"/>
353
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.78" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
354
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.781" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
355
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.781" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
356
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.781" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
357
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.782" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
358
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.782" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
359
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.782" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
360
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.783" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
361
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.783" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
362
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.783" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
363
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.784" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
364
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.784" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
365
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.784" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
366
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.785" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
367
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.785" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
368
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.785" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
369
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.785" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
370
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.786" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
371
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.786" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
372
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.786" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
373
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.787" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
374
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.787" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
375
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.787" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
376
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.787" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
377
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.788" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
378
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.788" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
379
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.803" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
380
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.804" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
381
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.804" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
382
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.804" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
383
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.804" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
384
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.804" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
385
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
386
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
387
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
388
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
389
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
390
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
391
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
392
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
393
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
394
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.805" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
395
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.806" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
396
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.806" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
397
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.806" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
398
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.806" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
399
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.806" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
400
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation&#xA; should be strictly equal" time="9.809" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation&#xA;"/>
401
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.809" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
402
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.809" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
403
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
404
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
405
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
406
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
407
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
408
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
409
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
410
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
411
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
412
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.81" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
413
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
414
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
415
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
416
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
417
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
418
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
419
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
420
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.811" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
421
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
422
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
423
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
424
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
425
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
426
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
427
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
428
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
429
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
430
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
431
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
432
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
433
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
434
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
435
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
436
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
437
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
438
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
439
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
440
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.813" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
441
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
442
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
443
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
444
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
445
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
446
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
447
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
448
+ <testcase name="# Test vtkTextureMapToPlane TCoords generation automatic&#xA; should be strictly equal" time="9.814" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToPlane TCoords generation automatic&#xA;"/>
449
+ <testcase name="# Test vtkTextureMapToSphere instance&#xA; Make sure the class definition exists" time="9.815" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere instance&#xA;"/>
450
+ <testcase name="# Test vtkTextureMapToSphere instance&#xA; should be truthy" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere instance&#xA;"/>
451
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
452
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
453
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
454
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
455
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
456
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
457
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
458
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
459
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
460
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
461
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
462
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
463
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
464
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
465
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
466
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
467
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
468
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
469
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
470
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
471
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
472
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
473
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
474
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.826" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
475
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
476
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
477
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
478
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
479
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
480
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
481
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
482
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
483
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
484
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
485
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
486
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
487
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
488
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
489
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
490
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
491
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
492
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
493
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
494
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.828" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
495
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.829" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
496
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.829" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
497
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.829" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
498
+ <testcase name="# Test vtkTextureMapToSphere TCoords generation&#xA; should be strictly equal" time="9.829" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkTextureMapToSphere TCoords generation&#xA;"/>
499
+ <testcase name="# Test vtkImageReslice Rendering&#xA; vtkImageReslice Rendering" time="10.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageReslice Rendering&#xA;"/>
500
+ <testcase name="# Test vtkImageReslice Rendering&#xA; Matching image - delta 0.13%" time="10.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageReslice Rendering&#xA;"/>
501
+ <testcase name="# Test vtkImageReslice Rendering&#xA; Image match resolution" time="10.689" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkImageReslice Rendering&#xA;"/>
502
+ <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="10.689" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
503
+ <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="10.69" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
504
+ <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="10.69" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
505
+ <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="10.69" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
506
+ <testcase name="# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA; should be strictly equal" time="10.691" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkInteractorStyleImage.setCurrentImageNumber&#xA;"/>
507
+ <testcase name="# Test MoleculeMapper&#xA; Filter: MoleculeToRepresentation" time="10.706" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
508
+ <testcase name="# Test MoleculeMapper&#xA; should be truthy" time="10.753" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
509
+ <testcase name="# Test MoleculeMapper&#xA; should be truthy" time="11.388" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
510
+ <testcase name="# Test MoleculeMapper&#xA; Matching image - delta 0.00%" time="11.388" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
511
+ <testcase name="# Test MoleculeMapper&#xA; Image match resolution" time="11.402" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test MoleculeMapper&#xA;"/>
512
+ <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Custom points should not be active in Gaussian mode" time="11.416" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
513
+ <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Custom points should be active in Points mode" time="11.417" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
514
+ <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Default nodes" time="11.417" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
515
+ <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Default points" time="11.417" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
516
+ <testcase name="# Test vtkPiecewiseFunctionProxy&#xA; Default nodes" time="11.418" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPiecewiseFunctionProxy&#xA;"/>
517
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.419" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
518
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.419" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
519
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.42" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
520
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.42" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
521
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.42" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
522
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.421" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
523
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.421" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
524
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.421" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
525
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.421" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
526
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.421" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
527
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.429" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
528
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.429" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
529
+ <testcase name="# Test vtkAbstractMapper publicAPI&#xA; should be strictly equal" time="11.429" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkAbstractMapper publicAPI&#xA;"/>
530
+ <testcase name="# Test Actor&#xA; vtkActor testRotate" time="11.956" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Actor&#xA;"/>
531
+ <testcase name="# Test Actor&#xA; Matching image - delta 0.16%" time="11.956" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Actor&#xA;"/>
532
+ <testcase name="# Test Actor&#xA; Image match resolution" time="12.91" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Actor&#xA;"/>
533
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
534
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
535
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
536
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
537
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
538
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
539
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
540
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
541
+ <testcase name="# Test vtkCellPicker image mapper&#xA; should be strictly equal" time="12.911" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker image mapper&#xA;"/>
542
+ <testcase name="# Test vtkCellPicker instance&#xA; Make sure the class definition exists" time="12.912" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker instance&#xA;"/>
543
+ <testcase name="# Test vtkCellPicker instance&#xA; should be truthy" time="12.912" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCellPicker instance&#xA;"/>
544
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; vtkOpenGLPolyDataMapper ColorTransferFunction" time="13.658" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
545
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; Matching image - delta 0.34%" time="13.658" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
546
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; Image match resolution" time="13.661" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
547
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for -0.1, expect 1,0,0" time="13.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
548
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0, expect 1,0,0" time="13.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
549
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.1, expect 1,0,0" time="13.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
550
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.19, expect 1,0,0" time="13.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
551
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.2, expect 0.5,0.5,0" time="13.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
552
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.59, expect 0,1,0" time="13.662" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
553
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.6, expect 0,0.5,0.5" time="13.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
554
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 0.9, expect 0,0,1" time="13.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
555
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 1, expect 0,0,1" time="13.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
556
+ <testcase name="# Test discretized color transfer function&#xA; Test discretized ctf value for 1.1, expect 0,0,1" time="13.663" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test discretized color transfer function&#xA;"/>
557
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; vtkOpenGLPolyDataMapper ColorTransferFunction Presets" time="14.644" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
558
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; Matching image - delta 0.00%" time="14.644" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
559
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; Image match resolution" time="14.645" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
560
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; vtkOpenGLPolyDataMapper ColorTransferFunction Presets" time="21.558" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
561
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; Matching image - delta 0.19%" time="21.558" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
562
+ <testcase name="# Test Interpolate Scalars Before Colors&#xA; Image match resolution" time="21.59" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Colors&#xA;"/>
563
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.591" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
564
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.591" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
565
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.592" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
566
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.592" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
567
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.593" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
568
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.593" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
569
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.593" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
570
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.593" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
571
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.593" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
572
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
573
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
574
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
575
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
576
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
577
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
578
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.595" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
579
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.595" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
580
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.595" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
581
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.595" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
582
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.595" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
583
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.596" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
584
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.596" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
585
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.596" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
586
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.597" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
587
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.598" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
588
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.598" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
589
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.598" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
590
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.598" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
591
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.598" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
592
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
593
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
594
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
595
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
596
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
597
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.6" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
598
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.6" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
599
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.6" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
600
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.6" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
601
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
602
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
603
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
604
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
605
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
606
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.601" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
607
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
608
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
609
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
610
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
611
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
612
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.602" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
613
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
614
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
615
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
616
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
617
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
618
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.603" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
619
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
620
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
621
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
622
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
623
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
624
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.604" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
625
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
626
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
627
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
628
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
629
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
630
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.605" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
631
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.606" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
632
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.606" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
633
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.606" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
634
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
635
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
636
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
637
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
638
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
639
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.607" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
640
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
641
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
642
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
643
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
644
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
645
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.608" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
646
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
647
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
648
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
649
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
650
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
651
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
652
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.609" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
653
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.61" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
654
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.61" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
655
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.61" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
656
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.61" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
657
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.61" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
658
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
659
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
660
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
661
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
662
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
663
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.611" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
664
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
665
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
666
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
667
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
668
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.612" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
669
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
670
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
671
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
672
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
673
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
674
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.613" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
675
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
676
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
677
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
678
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
679
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
680
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
681
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.614" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
682
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
683
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
684
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
685
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
686
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
687
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.615" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
688
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
689
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
690
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
691
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.616" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
692
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
693
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
694
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
695
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
696
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.617" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
697
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.618" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
698
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.618" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
699
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.618" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
700
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.618" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
701
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
702
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
703
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
704
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.619" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
705
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
706
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
707
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
708
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.62" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
709
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
710
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
711
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
712
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
713
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.621" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
714
+ <testcase name="# Test vtkCoordinate publicAPI&#xA; should be deeply equivalent" time="21.622" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkCoordinate publicAPI&#xA;"/>
715
+ <testcase name="# Test Follower class&#xA; vtkFollower" time="22.496" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Follower class&#xA;"/>
716
+ <testcase name="# Test Follower class&#xA; Matching image - delta 1.18%" time="22.497" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Follower class&#xA;"/>
717
+ <testcase name="# Test Follower class&#xA; Image match resolution" time="22.5" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Follower class&#xA;"/>
718
+ <testcase name="# Test vtkGlyph3DMapper Rendering&#xA; vtkGlyph3DMapper Rendering" time="23.075" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkGlyph3DMapper Rendering&#xA;"/>
719
+ <testcase name="# Test vtkGlyph3DMapper Rendering&#xA; Matching image - delta 0.03%" time="23.076" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkGlyph3DMapper Rendering&#xA;"/>
720
+ <testcase name="# Test vtkGlyph3DMapper Rendering&#xA; Image match resolution" time="23.078" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkGlyph3DMapper Rendering&#xA;"/>
721
+ <testcase name="# Test HardwareSelector&#xA; vtkHardwareSelector TestHardwareSelector" time="23.482" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
722
+ <testcase name="# Test HardwareSelector&#xA; Two props selected" time="23.482" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
723
+ <testcase name="# Test HardwareSelector&#xA; Correct props were selected" time="23.484" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
724
+ <testcase name="# Test HardwareSelectorGlyph&#xA; TestHardwareSelectorGlyph" time="23.716" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
725
+ <testcase name="# Test HardwareSelectorGlyph&#xA; Seven glyphs selected" time="23.716" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
726
+ <testcase name="# Test HardwareSelectorGlyph&#xA; glyph 71 was the first selected" time="23.716" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
727
+ <testcase name="# Test HardwareSelectorGlyph&#xA; Correct prop was selected" time="23.717" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelectorGlyph&#xA;"/>
728
+ <testcase name="# Test HardwareSelector&#xA; vtkHardwareSelector TestHardwareSelector" time="26.862" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
729
+ <testcase name="# Test HardwareSelector&#xA; Hardware selector takes less than six normal renders (2329, 210, 317)" time="26.874" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test HardwareSelector&#xA;"/>
730
+ <testcase name="# Test Edge Visibility&#xA; vtkMapper EdgeVisibility" time="27.478" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Edge Visibility&#xA;"/>
731
+ <testcase name="# Test Edge Visibility&#xA; Matching image - delta 0.69%" time="27.479" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Edge Visibility&#xA;"/>
732
+ <testcase name="# Test Edge Visibility&#xA; Image match resolution" time="27.481" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Edge Visibility&#xA;"/>
733
+ <testcase name="# Test VectorComponent&#xA; vtkMapper Vector Component" time="28.375" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test VectorComponent&#xA;"/>
734
+ <testcase name="# Test VectorComponent&#xA; Matching image - delta 0.26%" time="28.375" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test VectorComponent&#xA;"/>
735
+ <testcase name="# Test VectorComponent&#xA; Image match resolution" time="29.389" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test VectorComponent&#xA;"/>
736
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.389" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
737
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
738
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
739
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
740
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
741
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
742
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
743
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.39" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
744
+ <testcase name="# Test vtkPointPicker image mapper&#xA; should be strictly equal" time="29.418" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker image mapper&#xA;"/>
745
+ <testcase name="# Test vtkPointPicker line source&#xA; pick at (380.5, 200)" time="29.418" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
746
+ <testcase name="# Test vtkPointPicker line source&#xA; should be strictly equal" time="29.418" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
747
+ <testcase name="# Test vtkPointPicker line source&#xA; point id" time="29.419" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
748
+ <testcase name="# Test vtkPointPicker line source&#xA; pick at (20, 200.5)" time="29.419" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
749
+ <testcase name="# Test vtkPointPicker line source&#xA; should be strictly equal" time="29.419" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
750
+ <testcase name="# Test vtkPointPicker line source&#xA; point id" time="29.419" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker line source&#xA;"/>
751
+ <testcase name="# Test vtkPointPicker instance&#xA; Make sure the class definition exists" time="29.42" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker instance&#xA;"/>
752
+ <testcase name="# Test vtkPointPicker instance&#xA; should be truthy" time="29.42" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPointPicker instance&#xA;"/>
753
+ <testcase name="# Test Set Actor User Matrix&#xA; vtkActor SetUserMatrix" time="30.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Set Actor User Matrix&#xA;"/>
754
+ <testcase name="# Test Set Actor User Matrix&#xA; Matching image - delta 0.18%" time="30.096" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Set Actor User Matrix&#xA;"/>
755
+ <testcase name="# Test Set Actor User Matrix&#xA; Image match resolution" time="30.708" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Set Actor User Matrix&#xA;"/>
756
+ <testcase name="# Test multiple renderers&#xA; Matching image - delta 0.00%" time="30.708" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test multiple renderers&#xA;"/>
757
+ <testcase name="# Test multiple renderers&#xA; Image match resolution" time="30.711" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test multiple renderers&#xA;"/>
758
+ <testcase name="# Test vtkSphereMapper Rendering&#xA; vtkSphereMapper Rendering" time="31.466" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSphereMapper Rendering&#xA;"/>
759
+ <testcase name="# Test vtkSphereMapper Rendering&#xA; Matching image - delta 0.00%" time="31.466" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSphereMapper Rendering&#xA;"/>
760
+ <testcase name="# Test vtkSphereMapper Rendering&#xA; Image match resolution" time="31.471" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSphereMapper Rendering&#xA;"/>
761
+ <testcase name="# Test SphereMapper&#xA; vtkSphereMapper testSphere" time="32.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test SphereMapper&#xA;"/>
762
+ <testcase name="# Test SphereMapper&#xA; Matching image - delta 0.04%" time="32.014" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test SphereMapper&#xA;"/>
763
+ <testcase name="# Test SphereMapper&#xA; Image match resolution" time="32.018" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test SphereMapper&#xA;"/>
764
+ <testcase name="# Test StickMapper&#xA; vtkStickMapper testStick" time="32.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test StickMapper&#xA;"/>
765
+ <testcase name="# Test StickMapper&#xA; Matching image - delta 0.02%" time="32.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test StickMapper&#xA;"/>
766
+ <testcase name="# Test StickMapper&#xA; Image match resolution" time="54.251" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test StickMapper&#xA;"/>
767
+ <testcase name="# Test ImageMapper&#xA; vtkOpenGLImageMapper testImage" time="54.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
768
+ <testcase name="# Test ImageMapper&#xA; Matching image - delta 0.47%" time="54.812" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
769
+ <testcase name="# Test ImageMapper&#xA; Image match resolution" time="54.819" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
770
+ <testcase name="# Test ImageMapper ClippingPlanes&#xA; vtkOpenGLImageMapper testImage" time="55.509" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper ClippingPlanes&#xA;"/>
771
+ <testcase name="# Test ImageMapper ClippingPlanes&#xA; Matching image - delta 0.00%" time="55.509" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper ClippingPlanes&#xA;"/>
772
+ <testcase name="# Test ImageMapper ClippingPlanes&#xA; Image match resolution" time="55.51" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper ClippingPlanes&#xA;"/>
773
+ <testcase name="# Test ImageMapper with Nearest Neighbor interpolation&#xA; vtkOpenGLImageMapper testImage" time="56.058" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper with Nearest Neighbor interpolation&#xA;"/>
774
+ <testcase name="# Test ImageMapper with Nearest Neighbor interpolation&#xA; Matching image - delta 0.06%" time="56.058" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper with Nearest Neighbor interpolation&#xA;"/>
775
+ <testcase name="# Test ImageMapper with Nearest Neighbor interpolation&#xA; Image match resolution" time="56.075" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper with Nearest Neighbor interpolation&#xA;"/>
776
+ <testcase name="# Test ImageMapper&#xA; vtkOpenGLImageMapper testImage" time="56.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
777
+ <testcase name="# Test ImageMapper&#xA; Matching image - delta 0.00%" time="56.599" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
778
+ <testcase name="# Test ImageMapper&#xA; Image match resolution" time="56.6" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test ImageMapper&#xA;"/>
779
+ <testcase name="# Test Add Shader Replacements&#xA; vtkOpenGLPolyDataMapper AddShaderReplacements" time="57.317" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Add Shader Replacements&#xA;"/>
780
+ <testcase name="# Test Add Shader Replacements&#xA; Matching image - delta 0.06%" time="57.318" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Add Shader Replacements&#xA;"/>
781
+ <testcase name="# Test Add Shader Replacements&#xA; Image match resolution" time="57.32" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Add Shader Replacements&#xA;"/>
782
+ <testcase name="# Test Clear Shader Replacements&#xA; vtkOpenGLPolyDataMapper ClearShaderReplacements" time="58.067" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clear Shader Replacements&#xA;"/>
783
+ <testcase name="# Test Clear Shader Replacements&#xA; Matching image - delta 0.10%" time="58.067" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clear Shader Replacements&#xA;"/>
784
+ <testcase name="# Test Clear Shader Replacements&#xA; Image match resolution" time="58.072" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clear Shader Replacements&#xA;"/>
785
+ <testcase name="# Test Clipping planes&#xA; vtkOpenGLPolyDataMapper setClippingPlanes" time="58.627" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clipping planes&#xA;"/>
786
+ <testcase name="# Test Clipping planes&#xA; Matching image - delta 0.00%" time="58.627" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clipping planes&#xA;"/>
787
+ <testcase name="# Test Clipping planes&#xA; Image match resolution" time="58.628" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Clipping planes&#xA;"/>
788
+ <testcase name="# Test Interpolate Scalars Before Mapping&#xA; vtkOpenGLPolyDataMapper InterpolateScalarsBeforeColors" time="59.204" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Mapping&#xA;"/>
789
+ <testcase name="# Test Interpolate Scalars Before Mapping&#xA; Matching image - delta 0.34%" time="59.204" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Mapping&#xA;"/>
790
+ <testcase name="# Test Interpolate Scalars Before Mapping&#xA; Image match resolution" time="59.206" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Interpolate Scalars Before Mapping&#xA;"/>
791
+ <testcase name="# Test vtkOpenGLSkybox Rendering&#xA; Filter: OpenGLTexture" time="61.286" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Rendering&#xA;"/>
792
+ <testcase name="# Test vtkOpenGLSkybox Rendering&#xA; Matching image - delta 0.00%" time="61.286" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Rendering&#xA;"/>
793
+ <testcase name="# Test vtkOpenGLSkybox Rendering&#xA; Image match resolution" time="61.292" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Rendering&#xA;"/>
794
+ <testcase name="# Test vtkOpenGLSkybox Background Rendering&#xA; Filter: OpenGLTexture" time="61.857" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Background Rendering&#xA;"/>
795
+ <testcase name="# Test vtkOpenGLSkybox Background Rendering&#xA; Matching image - delta 0.00%" time="61.858" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Background Rendering&#xA;"/>
796
+ <testcase name="# Test vtkOpenGLSkybox Background Rendering&#xA; Image match resolution" time="61.859" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLSkybox Background Rendering&#xA;"/>
797
+ <testcase name="# Test vtkOpenGLTexture Rendering&#xA; Filter: OpenGLTexture" time="62.824" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLTexture Rendering&#xA;"/>
798
+ <testcase name="# Test vtkOpenGLTexture Rendering&#xA; Matching image - delta 0.01%" time="62.825" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLTexture Rendering&#xA;"/>
799
+ <testcase name="# Test vtkOpenGLTexture Rendering&#xA; Image match resolution" time="62.827" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkOpenGLTexture Rendering&#xA;"/>
800
+ <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper Composite" time="66.938" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
801
+ <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.07%" time="66.939" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
802
+ <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="66.94" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
803
+ <testcase name="# Test Composite Volume Rendering with parallel projection&#xA; vtkOpenGLVolumeMapper CompositeParallelProjection" time="68.915" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering with parallel projection&#xA;"/>
804
+ <testcase name="# Test Composite Volume Rendering with parallel projection&#xA; Matching image - delta 0.00%" time="68.915" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering with parallel projection&#xA;"/>
805
+ <testcase name="# Test Composite Volume Rendering with parallel projection&#xA; Image match resolution" time="68.918" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering with parallel projection&#xA;"/>
806
+ <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper Composite16Bit" time="70.435" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
807
+ <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.00%" time="70.435" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
808
+ <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="70.44" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
809
+ <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper Intermixed" time="74.414" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
810
+ <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.06%" time="74.414" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
811
+ <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="74.416" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
812
+ <testcase name="# Test Composite Volume Rendering&#xA; vtkOpenGLVolumeMapper IntermixedImage" time="81.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
813
+ <testcase name="# Test Composite Volume Rendering&#xA; Matching image - delta 0.15%" time="81.344" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
814
+ <testcase name="# Test Composite Volume Rendering&#xA; Image match resolution" time="81.346" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Composite Volume Rendering&#xA;"/>
815
+ <testcase name="# Test Lighted Volume Rendering&#xA; vtkOpenGLVolumeMapper Lighting" time="87.084" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Lighted Volume Rendering&#xA;"/>
816
+ <testcase name="# Test Lighted Volume Rendering&#xA; Matching image - delta 0.30%" time="87.084" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Lighted Volume Rendering&#xA;"/>
817
+ <testcase name="# Test Lighted Volume Rendering&#xA; Image match resolution" time="87.085" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Lighted Volume Rendering&#xA;"/>
818
+ <testcase name="# Test Maximum Intensity Projection Volume Rendering&#xA; vtkOpenGLVolumeMapper MIP" time="88.258" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Maximum Intensity Projection Volume Rendering&#xA;"/>
819
+ <testcase name="# Test Maximum Intensity Projection Volume Rendering&#xA; Matching image - delta 0.00%" time="88.258" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Maximum Intensity Projection Volume Rendering&#xA;"/>
820
+ <testcase name="# Test Maximum Intensity Projection Volume Rendering&#xA; Image match resolution" time="88.261" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Maximum Intensity Projection Volume Rendering&#xA;"/>
821
+ <testcase name="# Test Minimum Intensity Projection Volume Rendering&#xA; vtkOpenGLVolumeMapper MinIP" time="89.152" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Minimum Intensity Projection Volume Rendering&#xA;"/>
822
+ <testcase name="# Test Minimum Intensity Projection Volume Rendering&#xA; Matching image - delta 0.00%" time="89.152" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Minimum Intensity Projection Volume Rendering&#xA;"/>
823
+ <testcase name="# Test Minimum Intensity Projection Volume Rendering&#xA; Image match resolution" time="89.153" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Minimum Intensity Projection Volume Rendering&#xA;"/>
824
+ <testcase name="# Test Volume Rendering with Proportional Component&#xA; vtkOpenGLVolumeMapper ProportionalComponent" time="94.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Volume Rendering with Proportional Component&#xA;"/>
825
+ <testcase name="# Test Volume Rendering with Proportional Component&#xA; Matching image - delta 0.00%" time="94.138" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Volume Rendering with Proportional Component&#xA;"/>
826
+ <testcase name="# Test Volume Rendering with Proportional Component&#xA; Image match resolution" time="94.143" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Volume Rendering with Proportional Component&#xA;"/>
827
+ <testcase name="# Test Average Intensity Projection Volume Rendering&#xA; vtkOpenGLVolumeMapper AverageIP" time="95.435" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Average Intensity Projection Volume Rendering&#xA;"/>
828
+ <testcase name="# Test Average Intensity Projection Volume Rendering&#xA; Matching image - delta 0.00%" time="95.435" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Average Intensity Projection Volume Rendering&#xA;"/>
829
+ <testcase name="# Test Average Intensity Projection Volume Rendering&#xA; Image match resolution" time="95.436" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test Average Intensity Projection Volume Rendering&#xA;"/>
830
+ <testcase name="# Macro methods algo tests&#xA; populate publicAPI" time="95.436" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
831
+ <testcase name="# Macro methods algo tests&#xA; return input data" time="95.437" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
832
+ <testcase name="# Macro methods algo tests&#xA; Add two input arrays" time="95.437" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
833
+ <testcase name="# Macro methods algo tests&#xA; Subtract two input arrays" time="95.437" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
834
+ <testcase name="# Macro methods algo tests&#xA; Multiply two input arrays" time="95.437" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
835
+ <testcase name="# Macro methods algo tests&#xA; Divide two input arrays, using outputPort" time="95.438" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods algo tests&#xA;"/>
836
+ <testcase name="# Macro shouldUpdate returns true if output is deleted&#xA; Trivial producer outputs first input data" time="95.438" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro shouldUpdate returns true if output is deleted&#xA;"/>
837
+ <testcase name="# Macro shouldUpdate returns true if output is deleted&#xA; Trivial producer outputs second input data" time="95.438" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro shouldUpdate returns true if output is deleted&#xA;"/>
838
+ <testcase name="# onlyIfWebGL&#xA; onlyIfWebGL enabled" time="95.438" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# onlyIfWebGL&#xA;"/>
839
+ <testcase name="# Macro methods scalar tests&#xA; macro setget" time="95.439" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
840
+ <testcase name="# Macro methods scalar tests&#xA; Initial gets should match defaults" time="95.439" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
841
+ <testcase name="# Macro methods scalar tests&#xA; Bool get should match set" time="95.439" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
842
+ <testcase name="# Macro methods scalar tests&#xA; Initial gets should match defaults" time="95.44" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
843
+ <testcase name="# Macro methods scalar tests&#xA; Int get should match set" time="95.44" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
844
+ <testcase name="# Macro methods scalar tests&#xA; mtime should increase after set" time="95.44" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
845
+ <testcase name="# Macro methods scalar tests&#xA; mtime should not increase after idempotent set" time="95.44" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods scalar tests&#xA;"/>
846
+ <testcase name="# Macro methods array tests&#xA; Initial gets should match defaults" time="95.441" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
847
+ <testcase name="# Macro methods array tests&#xA; Throw if no set method declared" time="95.441" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
848
+ <testcase name="# Macro methods array tests&#xA; Array spread set OK" time="95.441" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
849
+ <testcase name="# Macro methods array tests&#xA; Array spread set should match get" time="95.441" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
850
+ <testcase name="# Macro methods array tests&#xA; OK to set a single array argument" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
851
+ <testcase name="# Macro methods array tests&#xA; Array set should match get" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
852
+ <testcase name="# Macro methods array tests&#xA; mtime should increase after set" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
853
+ <testcase name="# Macro methods array tests&#xA; Invalid number of values should throw" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
854
+ <testcase name="# Macro methods array tests&#xA; Keep default value after illegal set" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
855
+ <testcase name="# Macro methods array tests&#xA; mtime should not increase after idempotent set" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
856
+ <testcase name="# Macro methods array tests&#xA; Invalid number of values should throw" time="95.442" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
857
+ <testcase name="# Macro methods array tests&#xA; Keep value after illegal set" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
858
+ <testcase name="# Macro methods array tests&#xA; Invalid set with string should throw" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
859
+ <testcase name="# Macro methods array tests&#xA; Keep value after illegal set" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
860
+ <testcase name="# Macro methods array tests&#xA; OK to set a typed array argument" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
861
+ <testcase name="# Macro methods array tests&#xA; setArray should copy input argument" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
862
+ <testcase name="# Macro methods array tests&#xA; OK to set no argument" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
863
+ <testcase name="# Macro methods array tests&#xA; OK to set not enough argument" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
864
+ <testcase name="# Macro methods array tests&#xA; OK to set too-short array argument" time="95.443" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
865
+ <testcase name="# Macro methods array tests&#xA; OK to set too short typed array argument" time="95.444" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
866
+ <testcase name="# Macro methods array tests&#xA; Invalid number of values should throw" time="95.444" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
867
+ <testcase name="# Macro methods array tests&#xA; Too large array should throw" time="95.444" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
868
+ <testcase name="# Macro methods array tests&#xA; Too large array should throw" time="95.444" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods array tests&#xA;"/>
869
+ <testcase name="# Macro methods enum tests&#xA; Initial gets should match defaults" time="95.445" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
870
+ <testcase name="# Macro methods enum tests&#xA; Enum set should match get" time="95.445" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
871
+ <testcase name="# Macro methods enum tests&#xA; should be truthy" time="95.445" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
872
+ <testcase name="# Macro methods enum tests&#xA; Enum set by index should get matching enum value" time="95.445" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
873
+ <testcase name="# Macro methods enum tests&#xA; Setting idempotent value should return false" time="95.445" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
874
+ <testcase name="# Macro methods enum tests&#xA; Invalid enum index should throw" time="95.445" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
875
+ <testcase name="# Macro methods enum tests&#xA; Enum set out of range should be rejected" time="95.446" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
876
+ <testcase name="# Macro methods enum tests&#xA; Invalid enum string should throw" time="95.446" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
877
+ <testcase name="# Macro methods enum tests&#xA; Enum set string out of range should be rejected" time="95.446" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
878
+ <testcase name="# Macro methods enum tests&#xA; Invalid enum set with array/object should throw" time="95.446" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
879
+ <testcase name="# Macro methods enum tests&#xA; Enum set string out of range should be rejected" time="95.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods enum tests&#xA;"/>
880
+ <testcase name="# Macro methods object tests&#xA; Get entire model" time="95.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
881
+ <testcase name="# Macro methods object tests&#xA; Get defaults back test" time="95.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
882
+ <testcase name="# Macro methods object tests&#xA; Object should be frozen" time="95.447" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
883
+ <testcase name="# Macro methods object tests&#xA; should be truthy" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
884
+ <testcase name="# Macro methods object tests&#xA; should be truthy" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
885
+ <testcase name="# Macro methods object tests&#xA; Object modified fires" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
886
+ <testcase name="# Macro methods object tests&#xA; Object modified does not fire after unsubscribe" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
887
+ <testcase name="# Macro methods object tests&#xA; Test mult-set" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
888
+ <testcase name="# Macro methods object tests&#xA; Float get should match multi-set" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
889
+ <testcase name="# Macro methods object tests&#xA; Array multi-set should match get" time="95.448" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
890
+ <testcase name="# Macro methods object tests&#xA; should be truthy" time="95.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
891
+ <testcase name="# Macro methods object tests&#xA; should be truthy" time="95.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
892
+ <testcase name="# Macro methods object tests&#xA; should be falsy" time="95.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
893
+ <testcase name="# Macro methods object tests&#xA; should be strictly equal" time="95.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
894
+ <testcase name="# Macro methods object tests&#xA; should not throw" time="95.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
895
+ <testcase name="# Macro methods object tests&#xA; All calls should do nothing after delete" time="95.449" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods object tests&#xA;"/>
896
+ <testcase name="# Macro methods event tests&#xA; cbAbort1 should be called first" time="95.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
897
+ <testcase name="# Macro methods event tests&#xA; cbAbort2 should be called second" time="95.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
898
+ <testcase name="# Macro methods event tests&#xA; Only 2 callbacks should be invoked, not 3" time="95.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
899
+ <testcase name="# Macro methods event tests&#xA; cbPriority2 should be called first" time="95.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
900
+ <testcase name="# Macro methods event tests&#xA; cbPriority2 should be called first" time="95.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
901
+ <testcase name="# Macro methods event tests&#xA; cbPriority1 should be called second" time="95.45" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
902
+ <testcase name="# Macro methods event tests&#xA; cbPriority0 should be called third" time="95.552" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
903
+ <testcase name="# Macro methods event tests&#xA; cbPriorityLast should be called last after 101ms" time="95.552" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
904
+ <testcase name="# Macro methods event tests&#xA; cbPriority2 should be called exactly twice" time="95.553" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods event tests&#xA;"/>
905
+ <testcase name="# Macro methods keystore tests&#xA; key1 should exist in keystore" time="95.553" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
906
+ <testcase name="# Macro methods keystore tests&#xA; key2 should exist in keystore" time="95.553" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
907
+ <testcase name="# Macro methods keystore tests&#xA; key3 should exist in keystore" time="95.553" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
908
+ <testcase name="# Macro methods keystore tests&#xA; Delete key2 should succeed" time="95.553" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
909
+ <testcase name="# Macro methods keystore tests&#xA; There should be no keys after clearing" time="95.564" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Macro methods keystore tests&#xA;"/>
910
+ <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure the class definition exist" time="95.564" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
911
+ <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure the instance exist" time="95.565" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
912
+ <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure we can get serialize data" time="95.565" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
913
+ <testcase name="# Test vtkDataArray serialization/deserialization&#xA; Make sure we can get deserialize data" time="95.565" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
914
+ <testcase name="# Test vtkDataArray serialization/deserialization&#xA; We have two different instances" time="95.565" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
915
+ <testcase name="# Test vtkDataArray serialization/deserialization&#xA; But same serialized content" time="95.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkDataArray serialization/deserialization&#xA;"/>
916
+ <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure the class definition exist" time="95.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
917
+ <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure the instance exist" time="95.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
918
+ <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure we can get serialize data" time="95.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
919
+ <testcase name="# Test vtkPoints serialization/deserialization&#xA; Make sure we can get deserialize data" time="95.566" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
920
+ <testcase name="# Test vtkPoints serialization/deserialization&#xA; We have two different instances" time="95.567" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
921
+ <testcase name="# Test vtkPoints serialization/deserialization&#xA; But same serialized content" time="95.567" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPoints serialization/deserialization&#xA;"/>
922
+ <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure the class definition exist" time="95.568" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
923
+ <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure the instance exist" time="95.569" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
924
+ <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure we can get serialize data" time="95.569" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
925
+ <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; Make sure we can get deserialize data" time="95.57" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
926
+ <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; We have two different instances" time="95.57" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
927
+ <testcase name="# Test vtkLookupTable serialization/deserialization&#xA; But same serialized content" time="95.57" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkLookupTable serialization/deserialization&#xA;"/>
928
+ <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure the class definition exist" time="95.57" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
929
+ <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure the instance exist" time="95.571" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
930
+ <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure we can get serialize data" time="95.571" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
931
+ <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; Make sure we can get deserialize data" time="95.571" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
932
+ <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; We have two different instances" time="95.571" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
933
+ <testcase name="# Test vtkScalarsToColors serialization/deserialization&#xA; But same serialized content" time="95.571" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkScalarsToColors serialization/deserialization&#xA;"/>
934
+ <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure the class definition exist" time="95.572" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
935
+ <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure the instance exist" time="95.573" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
936
+ <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure we can get serialize data" time="95.574" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
937
+ <testcase name="# Test vtkPolyData serialization/deserialization&#xA; Make sure we can get deserialize data" time="95.575" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
938
+ <testcase name="# Test vtkPolyData serialization/deserialization&#xA; We have two different instances" time="95.575" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
939
+ <testcase name="# Test vtkPolyData serialization/deserialization&#xA; But same serialized content" time="95.576" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkPolyData serialization/deserialization&#xA;"/>
940
+ <testcase name="# Proxy activation via config&#xA; No initial active source" time="95.577" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via config&#xA;"/>
941
+ <testcase name="# Proxy activation via config&#xA; Active source set after proxy creation" time="95.577" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via config&#xA;"/>
942
+ <testcase name="# Proxy activation via .activate()&#xA; No initial active source" time="95.578" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
943
+ <testcase name="# Proxy activation via .activate()&#xA; No active source after proxy creation" time="95.578" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
944
+ <testcase name="# Proxy activation via .activate()&#xA; Proxy manager should be modified after proxy activation" time="95.578" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
945
+ <testcase name="# Proxy activation via .activate()&#xA; Active source set" time="96.142" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Proxy activation via .activate()&#xA;"/>
946
+ <testcase name="# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA; Matching image - delta 0.00%" time="96.143" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA;"/>
947
+ <testcase name="# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA; Image match resolution" time="96.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithPerspective(): scaleInPixels=false, parallelProjection=false&#xA;"/>
948
+ <testcase name="# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA; Matching image - delta 0.00%" time="96.358" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA;"/>
949
+ <testcase name="# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA; Image match resolution" time="96.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testNoScaleInPixelsWithParallel(): scaleInPixels=false, parallelProjection=true&#xA;"/>
950
+ <testcase name="# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA; Matching image - delta 0.00%" time="96.594" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA;"/>
951
+ <testcase name="# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA; Image match resolution" time="96.869" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithPerspective(): scaleInPixels=true, parallelProjection=false&#xA;"/>
952
+ <testcase name="# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA; Matching image - delta 0.19%" time="96.869" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA;"/>
953
+ <testcase name="# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA; Image match resolution" time="96.877" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# testScaleInPixelsWithParallel(): scaleInPixels=true, parallelProjection=true&#xA;"/>
954
+ <testcase name="# Test boundPlane natural basis simple&#xA; should be truthy" time="96.878" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis simple&#xA;"/>
955
+ <testcase name="# Test boundPlane natural basis simple&#xA; should be truthy" time="96.878" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis simple&#xA;"/>
956
+ <testcase name="# Test boundPlane natural basis simple&#xA; should be truthy" time="96.88" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis simple&#xA;"/>
957
+ <testcase name="# Test boundPlane natural basis with offset&#xA; should be truthy" time="96.88" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis with offset&#xA;"/>
958
+ <testcase name="# Test boundPlane natural basis with offset&#xA; should be truthy" time="96.88" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis with offset&#xA;"/>
959
+ <testcase name="# Test boundPlane natural basis with offset&#xA; should be truthy" time="96.882" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane natural basis with offset&#xA;"/>
960
+ <testcase name="# Test boundPlane oriented&#xA; should be truthy" time="96.882" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane oriented&#xA;"/>
961
+ <testcase name="# Test boundPlane oriented&#xA; should be truthy" time="96.883" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane oriented&#xA;"/>
962
+ <testcase name="# Test boundPlane oriented&#xA; should be truthy" time="96.884" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane oriented&#xA;"/>
963
+ <testcase name="# Test boundPlane no intersection&#xA; should be truthy" time="96.884" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane no intersection&#xA;"/>
964
+ <testcase name="# Test boundPlane no intersection&#xA; should be truthy" time="96.884" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane no intersection&#xA;"/>
965
+ <testcase name="# Test boundPlane no intersection&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test boundPlane no intersection&#xA;"/>
966
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
967
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
968
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
969
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
970
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
971
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.885" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
972
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
973
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
974
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
975
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
976
+ <testcase name="# Test getAssociatedPlaneName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getAssociatedPlaneName&#xA;"/>
977
+ <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
978
+ <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
979
+ <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
980
+ <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="96.886" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
981
+ <testcase name="# Test getPlaneNameFromLineName&#xA; should be truthy" time="97.887" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test getPlaneNameFromLineName&#xA;"/>
982
+ <testcase name="# Initialization&#xA; Camera focal point on 4" time="97.887" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
983
+ <testcase name="# Initialization&#xA; Camera view up on 4" time="97.887" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
984
+ <testcase name="# Initialization&#xA; Plane origin on 4" time="97.887" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
985
+ <testcase name="# Initialization&#xA; Plane point 1 on 4" time="97.887" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
986
+ <testcase name="# Initialization&#xA; Plane point 2 on 4" time="97.89" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
987
+ <testcase name="# Initialization&#xA; Camera focal point on 5" time="97.89" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
988
+ <testcase name="# Initialization&#xA; Camera view up on 5" time="97.89" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
989
+ <testcase name="# Initialization&#xA; Plane origin on 5" time="97.891" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
990
+ <testcase name="# Initialization&#xA; Plane point 1 on 5" time="97.891" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
991
+ <testcase name="# Initialization&#xA; Plane point 2 on 5" time="97.894" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
992
+ <testcase name="# Initialization&#xA; Camera focal point on 6" time="97.894" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
993
+ <testcase name="# Initialization&#xA; Camera view up on 6" time="97.894" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
994
+ <testcase name="# Initialization&#xA; Plane origin on 6" time="97.894" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
995
+ <testcase name="# Initialization&#xA; Plane point 1 on 6" time="97.894" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
996
+ <testcase name="# Initialization&#xA; Plane point 2 on 6" time="97.897" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Initialization&#xA;"/>
997
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera focal point on 4" time="97.897" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
998
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera view up on 4" time="97.897" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
999
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane origin on 4" time="97.898" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1000
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 1 on 4" time="97.898" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1001
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 2 on 4" time="97.9" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1002
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera focal point on 5" time="97.9" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1003
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera view up on 5" time="97.9" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1004
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane origin on 5" time="97.9" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1005
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 1 on 5" time="97.9" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1006
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 2 on 5" time="97.903" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1007
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera focal point on 6" time="97.903" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1008
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Camera view up on 6" time="97.904" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1009
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane origin on 6" time="97.904" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1010
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 1 on 6" time="97.904" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1011
+ <testcase name="# Rotate Z by 45 degrees around Y&#xA; Plane point 2 on 6" time="98.932" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by 45 degrees around Y&#xA;"/>
1012
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera focal point on 4" time="98.932" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1013
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera view up on 4" time="98.933" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1014
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane origin on 4" time="98.933" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1015
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 1 on 4" time="98.933" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1016
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 2 on 4" time="98.935" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1017
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera focal point on 5" time="98.935" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1018
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera view up on 5" time="98.936" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1019
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane origin on 5" time="98.936" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1020
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 1 on 5" time="98.936" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1021
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 2 on 5" time="98.938" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1022
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera focal point on 6" time="98.939" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1023
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Camera view up on 6" time="98.94" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1024
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane origin on 6" time="98.94" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1025
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 1 on 6" time="98.94" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1026
+ <testcase name="# Rotate Z by -35 degrees around Y&#xA; Plane point 2 on 6" time="98.948" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Rotate Z by -35 degrees around Y&#xA;"/>
1027
+ <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="98.948" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1028
+ <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="98.949" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1029
+ <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="98.949" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1030
+ <testcase name="# Test vtkResliceCursorHelper rotateVector&#xA; should be truthy" time="99.724" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkResliceCursorHelper rotateVector&#xA;"/>
1031
+ <testcase name="# Test vtkSplineWidget rendering and picking&#xA; Matching image - delta 0.00%" time="99.724" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1032
+ <testcase name="# Test vtkSplineWidget rendering and picking&#xA; Image match resolution" time="99.854" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1033
+ <testcase name="# Test vtkSplineWidget rendering and picking&#xA; should be strictly equal" time="99.854" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1034
+ <testcase name="# Test vtkSplineWidget rendering and picking&#xA; should be strictly equal" time="99.857" classname="Chrome_Headless_93_0_4577_63_(Linux_x86_64).# Test vtkSplineWidget rendering and picking&#xA;"/>
1035
1035
  <system-out>
1036
1036
  <![CDATA[Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 'TAP version 13'
1037
1037
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: '# Test cell array constructor'
@@ -1882,8 +1882,8 @@
1882
1882
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: '# Test HardwareSelector'
1883
1883
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 'ok 730 vtkHardwareSelector TestHardwareSelector'
1884
1884
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) ERROR: 'WebVR is not available'
1885
- ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 1992, 187, 282
1886
- ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 'ok 731 Hardware selector takes less than six normal renders (1992, 187, 282)'
1885
+ ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 2329, 210, 317
1886
+ ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 'ok 731 Hardware selector takes less than six normal renders (2329, 210, 317)'
1887
1887
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: '# Test Edge Visibility'
1888
1888
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) LOG: 'ok 732 vtkMapper EdgeVisibility'
1889
1889
  ,Chrome Headless 93.0.4577.63 (Linux x86_64) ERROR: 'WebVR is not available'