Verifies: SYS-REQ-001 [mcdc]
(t *testing.T)
| 113 | |
| 114 | // Verifies: SYS-REQ-001 [mcdc] |
| 115 | func TestCodeMCDC_TokenEndTab(t *testing.T) { |
| 116 | // A bare scalar terminated by TAB drives the c != 9 branch in tokenEnd |
| 117 | // (parser.go:53). |
| 118 | if _, _, _, err := Get([]byte("1\t")); err != nil { |
| 119 | t.Fatalf("Get returned error: %v", err) |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | // ----------------------------------------------------------------------------- |
| 124 | // createInsertComponent / calcAllocateSpace — direct call to drive the |