github.com/golang/mock@v1.6.0/mockgen/internal/tests/panicing_test/panic_test.go (about)

     1  // +build panictest
     2  
     3  // Copyright 2020 Google LLC
     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  package paniccode
    18  
    19  import (
    20  	"testing"
    21  
    22  	"github.com/golang/mock/gomock"
    23  )
    24  
    25  func TestDanger_Panics_Explicit(t *testing.T) {
    26  	ctrl := gomock.NewController(t)
    27  	defer ctrl.Finish()
    28  	mock := NewMockFoo(ctrl)
    29  	mock.EXPECT().Bar().Return("Bar")
    30  	mock.EXPECT().Bar().Return("Baz")
    31  	Danger(mock)
    32  }
    33  
    34  func TestDanger_Panics_Implicit(t *testing.T) {
    35  	ctrl := gomock.NewController(t)
    36  	mock := NewMockFoo(ctrl)
    37  	mock.EXPECT().Bar().Return("Bar")
    38  	mock.EXPECT().Bar().Return("Baz")
    39  	Danger(mock)
    40  }