Skip to content
Novus Examples

Explore the test library

Find files, editable templates and browser test targets by what you need to make or test. Explore complete business kits for connected records, templates and expected results.

5297 results

Page 135 of 221; 24 results per page.

Show the canonical directory
Preview of NumPy .npy: int16 Big-Endian (.npy)
npy
146 B
Actual file preview for NumPy .npy: int16 Big-Endian (.npy)

NumPy .npy: int16 Big-Endian (.npy)

The same nine int16 values written big-endian, so the header descriptor reads '>i2'. A loader that ignores the descriptor and assumes native little-endian order returns 13330 where the file says 4660, without any error.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy: int16 Little-Endian (.npy)
npy
146 B
Actual file preview for NumPy .npy: int16 Little-Endian (.npy)

NumPy .npy: int16 Little-Endian (.npy)

Nine int16 values including both type extremes, stored little-endian so the descriptor in the header reads '<i2'. It is one half of an endian pair whose values are identical and whose bytes are not.

File
NPY · Arrays
Use case
Scientific dataSerialization testing· Paired fixture
Preview of NumPy .npy: Structured Record Array with Units in Field Names (.npy)
npy
528 B
Actual file preview for NumPy .npy: Structured Record Array with Units in Field Names (.npy)

NumPy .npy: Structured Record Array with Units in Field Names (.npy)

A 16-record structured array carrying a value, its uncertainty and a quality flag, with the physical unit encoded in the field-name suffix because .npy has nowhere else to put it. The header descriptor is a list of field tuples rather than a single type string, which is the parsing branch this file exercises.

File
NPY · Arrays · 16 records
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy: Zero-Dimensional Scalar (.npy)
npy
136 B
Actual file preview for NumPy .npy: Zero-Dimensional Scalar (.npy)

NumPy .npy: Zero-Dimensional Scalar (.npy)

A rank-0 .npy holding a single double, whose header shape is the empty tuple rather than (1,). Indexing it with [0] raises rather than returning the value, so it separates parsers that model rank properly from parsers that assume at least one axis.

File
NPY · Arrays
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npy: Zero-Length Array With Real Shape (.npy)
npy
128 B
Actual file preview for NumPy .npy: Zero-Length Array With Real Shape (.npy)

NumPy .npy: Zero-Length Array With Real Shape (.npy)

A valid .npy file with a full header, a declared (0, 4) shape and a data section of zero bytes. It preserves the column count across an empty result, and it separates readers that model emptiness from readers that treat it as failure.

File
NPY · Arrays
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npz-style Bundle: Five Arrays, Deflated (.zip)
zip
1.1 KB
Actual file preview for NumPy .npz-style Bundle: Five Arrays, Deflated (.zip)

NumPy .npz-style Bundle: Five Arrays, Deflated (.zip)

The identical five arrays bundled with deflate instead of stored, which is the only difference between NumPy's savez and savez_compressed. Loading both and comparing proves a reader ran the decompressor rather than trusting stored-size shortcuts.

File
ZIP · Arrays · 5 members
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NumPy .npz-style Bundle: Five Arrays, Stored (.zip)
zip
2.2 KB
Actual file preview for NumPy .npz-style Bundle: Five Arrays, Stored (.zip)

NumPy .npz-style Bundle: Five Arrays, Stored (.zip)

An npz-style bundle: a ZIP whose members are .npy files, which is exactly what NumPy's savez produces. np.load opens it by ZIP magic rather than by extension, so the arrays load straight from this .zip; rename it to .npz for tooling that checks the suffix.

File
ZIP · Arrays · 5 members
Use case
Scientific dataSerialization testing+1· Conversion set
Preview of NUnit 3: Test Result XML
xml
6.5 KB
Actual file preview for NUnit 3: Test Result XML

NUnit 3: Test Result XML

The NUnit 3 test-run document, with a nested Assembly/TestFixture suite tree, an environment element and per-case seeds. NUnit has no separate error outcome, so the errored case appears as Failed with label="Error" and the report reads failed=2. Reports the same canonical run as the JUnit dialect files: 12 tests, 9 passed, 1 assertion failure, 1 error and 1 skip.

File
XML · Runners · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of oauth-authorization-server metadata (RFC 8414)
json
1.4 KB
Actual file preview for oauth-authorization-server metadata (RFC 8414)

oauth-authorization-server metadata (RFC 8414)

A fully populated RFC 8414 authorization-server metadata document for a fictional issuer: seven endpoints including PAR, introspection and dynamic registration, PKCE and DPoP algorithm lists, and policy URIs. Distinct from the minimal OpenID configuration already in this category.

File
JSON · Well Known
Use case
Web assetsJSON parsing+1· Conversion set
Preview of OBJ: Clean Reference Cube
obj
1002 B
Actual file preview for OBJ: Clean Reference Cube

OBJ: Clean Reference Cube

A welded, manifold, consistently-wound unit cube: 8 vertices, 12 triangles, 18 edges each shared by exactly two faces, and a signed volume of exactly 1.0. This is the answer key: each defect fixture in the degenerate/ subcategory is this mesh with exactly one thing wrong.

File
OBJ · Degenerate · 12 triangles
Use case
Mesh repair testingMesh processing QA· Conversion set
Preview of OBJ: Duplicate Vertices, Split Seam
obj
1.3 KB
Actual file preview for OBJ: Duplicate Vertices, Split Seam

OBJ: Duplicate Vertices, Split Seam

The reference cube with all eight corners stored twice at bit-identical coordinates: the first six triangles use one copy, the last six use the other. It renders as a closed cube but is topologically two disconnected surface patches with a split seam, which is why smoothing, subdivision and boolean operations all misbehave on it.

File
OBJ · Degenerate · 12 triangles
Use case
Mesh repair testingMesh processing QA· Conversion set
Preview of OBJ: Inverted Normals / Mixed Winding
obj
1.1 KB
Actual file preview for OBJ: Inverted Normals / Mixed Winding

OBJ: Inverted Normals / Mixed Winding

The reference cube with three of its six cube faces (six of its twelve triangles) wound clockwise instead of counter-clockwise, and `vn` records that follow the reversed winding into the solid. The classic symptom is a model that looks half-invisible with backface culling on and half-black with it off.

File
OBJ · Degenerate · 12 triangles
Use case
Mesh repair testingMesh processing QA· Conversion set
Preview of OBJ: NaN Vertex Coordinates
obj
443 B
Actual file preview for OBJ: NaN Vertex Coordinates

OBJ: NaN Vertex Coordinates

The same NaN vertex in Wavefront OBJ, where the literal is the bare token `nan`. Normals are deliberately not written, because the three faces touching that vertex have no computable normal, which is exactly the state an importer must handle rather than serialise.

File
OBJ · Degenerate · 12 triangles
Use case
Mesh repair testingError handling· Conversion set
Preview of OBJ: Non-manifold Edge (three faces on one edge)
obj
1.2 KB
Actual file preview for OBJ: Non-manifold Edge (three faces on one edge)

OBJ: Non-manifold Edge (three faces on one edge)

The reference cube with a two-triangle fin welded along one top edge, so that edge is shared by three faces instead of two. Non-manifold edges have no defined surface orientation, which is why slicers refuse them and why subdivision and offsetting produce garbage.

File
OBJ · Degenerate · 14 triangles
Use case
Mesh repair testingMesh processing QA· Conversion set