(t *testing.T)
| 34 | } |
| 35 | |
| 36 | func TestEnvPropertySource_Origin(t *testing.T) { |
| 37 | // given |
| 38 | envPropSource := NewEnvPropertySource() |
| 39 | |
| 40 | // when |
| 41 | origin := envPropSource.Origin() |
| 42 | |
| 43 | // then |
| 44 | assert.NotNil(t, origin) |
| 45 | assert.Equal(t, "os.Environ()", origin) |
| 46 | } |
| 47 | |
| 48 | func TestEnvPropertySource_Value(t *testing.T) { |
| 49 | testCases := []struct { |
nothing calls this directly
no test coverage detected