blob: f27392dbeda6909acf242e1dda976dd06db58537 [file] [log] [blame]
Juha Hyttinen5f8ffa02020-02-06 15:28:59 +02001/*
2==================================================================================
3 Copyright (c) 2019 AT&T Intellectual Property.
4 Copyright (c) 2019 Nokia
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17==================================================================================
18*/
19package teststub
20
21import (
22 "fmt"
23 "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/xapptweaks"
24 "testing"
25)
26
27type TestWrapper struct {
28 xapptweaks.LogWrapper
29}
30
31func (tw *TestWrapper) Init(desc string) {
32 tw.LogWrapper.Init(desc)
33}
34
35//-----------------------------------------------------------------------------
36//
37//-----------------------------------------------------------------------------
38func (tw *TestWrapper) TestError(t *testing.T, pattern string, args ...interface{}) {
39 tw.Logger.Error(fmt.Sprintf(pattern, args...))
40 t.Errorf(fmt.Sprintf(pattern, args...))
41}
42
43//-----------------------------------------------------------------------------
44//
45//-----------------------------------------------------------------------------
46func (tw *TestWrapper) TestLog(t *testing.T, pattern string, args ...interface{}) {
47 tw.Logger.Info(fmt.Sprintf(pattern, args...))
48 t.Logf(fmt.Sprintf(pattern, args...))
49}
50
51func NewTestWrapper(desc string) *TestWrapper {
52 tent := &TestWrapper{}
53 tent.Init(desc)
54 return tent
55}