InternalTest is called by fstests.Run to extra tests
(t *testing.T)
| 121 | |
| 122 | // InternalTest is called by fstests.Run to extra tests |
| 123 | func (f *Fs) InternalTest(t *testing.T) { |
| 124 | t.Run("ObjectInfo", func(t *testing.T) { testObjectInfo(t, f, false) }) |
| 125 | t.Run("ObjectInfoWrap", func(t *testing.T) { testObjectInfo(t, f, true) }) |
| 126 | t.Run("ComputeHash", func(t *testing.T) { testComputeHash(t, f) }) |
| 127 | } |
nothing calls this directly
no test coverage detected