Skip to content

Commit

Permalink
Enable backing store (#55)
Browse files Browse the repository at this point in the history
* Force revert

* Enable backing store
  • Loading branch information
rkodev authored Jan 26, 2023
1 parent 6ec82d7 commit af8d9d1
Show file tree
Hide file tree
Showing 8 changed files with 1,093 additions and 1,047 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
run: go build
working-directory: ${{ env.relativePath }}
- name: Test project
run: go test
run: go test ./...
working-directory: ${{ env.relativePath }}
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: go build
working-directory: ${{ env.relativePath }}
- name: Run unit tests
run: go test -o result.out -coverprofile cover.out
run: go test -coverprofile cover.out -coverpkg=./... ./...
working-directory: ${{ env.relativePath }}
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

## [0.14.0] - 2023-01-25

### Added

- Added implementation methods for backing store.

## [0.13.0] - 2023-01-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.18

require (
github.com/google/uuid v1.3.0
github.com/microsoft/kiota-abstractions-go v0.16.0
github.com/microsoft/kiota-abstractions-go v0.17.0
github.com/stretchr/testify v1.8.1
go.opentelemetry.io/otel v1.11.2
go.opentelemetry.io/otel/trace v1.11.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/microsoft/kiota-abstractions-go v0.16.0 h1:DZ1L4YsRsQw39iPGnVq2fQkqLXMsazdPwmWsnaH4EZg=
github.com/microsoft/kiota-abstractions-go v0.16.0/go.mod h1:RT/s9sCzg49i4iO7e2qhyWmX+DlJDgC0P+Wp8fKQQfo=
github.com/microsoft/kiota-abstractions-go v0.17.0 h1:Ye2DTk8ko9Na0uCvhcCV7TQPWt72trT+kyD37btDtsI=
github.com/microsoft/kiota-abstractions-go v0.17.0/go.mod h1:RT/s9sCzg49i4iO7e2qhyWmX+DlJDgC0P+Wp8fKQQfo=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
Expand Down
20 changes: 20 additions & 0 deletions internal/mock_parse_node_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,26 @@ func (e *MockParseNodeFactory) GetRootParseNode(contentType string, content []by
type MockParseNode struct {
}

func (e *MockParseNode) GetOnBeforeAssignFieldValues() absser.ParsableAction {
//TODO implement me
panic("implement me")
}

func (e *MockParseNode) SetOnBeforeAssignFieldValues(action absser.ParsableAction) error {
//TODO implement me
panic("implement me")
}

func (e *MockParseNode) GetOnAfterAssignFieldValues() absser.ParsableAction {
//TODO implement me
panic("implement me")
}

func (e *MockParseNode) SetOnAfterAssignFieldValues(action absser.ParsableAction) error {
//TODO implement me
panic("implement me")
}

func (*MockParseNode) GetRawValue() (interface{}, error) {
return nil, nil
}
Expand Down
Loading

0 comments on commit af8d9d1

Please sign in to comment.