eb9543f75760c5035e2fa5e829c203ff00d7943b
[ric-plt/e2mgr.git] / tools / xappmock / models / process_result.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 package models
19
20 import "fmt"
21
22 type ProcessStats struct {
23         SentCount               int
24         SentErrorCount          int
25         ReceivedExpectedCount   int
26         ReceivedUnexpectedCount int
27         ReceivedErrorCount      int
28 }
29
30 type ProcessResult struct {
31         Stats ProcessStats
32         Err   error
33 }
34
35 func (pr ProcessResult) String() string {
36         return fmt.Sprintf("\nNumber of sent messages: %d\nNumber of send errors: %d\n" +
37                 "Number of expected received messages: %d\nNumber of unexpected received messages: %d\n" +
38                 "Number of receive errors: %d\n", pr.Stats.SentCount, pr.Stats.SentErrorCount, pr.Stats.ReceivedExpectedCount, pr.Stats.ReceivedUnexpectedCount, pr.Stats.ReceivedErrorCount)
39 }