(t *testing.T)
| 14 | } |
| 15 | |
| 16 | func TestFormatter_WithIndent_Chaining(t *testing.T) { |
| 17 | // Test that WithIndent returns the formatter for chaining |
| 18 | formatter := NewFormatter().WithIndent(" ") |
| 19 | require.NotNil(t, formatter) |
| 20 | require.Equal(t, " ", formatter.indent) |
| 21 | } |
| 22 | |
| 23 | func TestFormatter_ChainedMethods(t *testing.T) { |
| 24 | // Test that methods can be chained together |
nothing calls this directly
no test coverage detected
searching dependent graphs…