github.com/mdaxf/iac@v0.0.0-20240519030858-58a061660378/controllers/lngcodes/lngcodes_test.go (about)

     1  package lngcodes
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/gin-gonic/gin"
     7  	dbconn "github.com/mdaxf/iac/databases"
     8  )
     9  
    10  func TestLCController_GetLngCodes(t *testing.T) {
    11  	type args struct {
    12  		c *gin.Context
    13  	}
    14  	tests := []struct {
    15  		name string
    16  		f    *LCController
    17  		args args
    18  	}{
    19  		// TODO: Add test cases.
    20  	}
    21  	for _, tt := range tests {
    22  		t.Run(tt.name, func(t *testing.T) {
    23  			tt.f.GetLngCodes(tt.args.c)
    24  		})
    25  	}
    26  }
    27  
    28  func TestLCController_UpdateLngCode(t *testing.T) {
    29  	type args struct {
    30  		c *gin.Context
    31  	}
    32  	tests := []struct {
    33  		name string
    34  		f    *LCController
    35  		args args
    36  	}{
    37  		// TODO: Add test cases.
    38  	}
    39  	for _, tt := range tests {
    40  		t.Run(tt.name, func(t *testing.T) {
    41  			tt.f.UpdateLngCode(tt.args.c)
    42  		})
    43  	}
    44  }
    45  
    46  func TestLCController_insertlngcode(t *testing.T) {
    47  	type args struct {
    48  		db       *dbconn.DBOperation
    49  		lngcode  string
    50  		text     string
    51  		language string
    52  		User     string
    53  	}
    54  	tests := []struct {
    55  		name    string
    56  		f       *LCController
    57  		args    args
    58  		wantErr bool
    59  	}{
    60  		// TODO: Add test cases.
    61  	}
    62  	for _, tt := range tests {
    63  		t.Run(tt.name, func(t *testing.T) {
    64  			if err := tt.f.insertlngcode(tt.args.db, tt.args.lngcode, tt.args.text, tt.args.language, tt.args.User); (err != nil) != tt.wantErr {
    65  				t.Errorf("LCController.insertlngcode() error = %v, wantErr %v", err, tt.wantErr)
    66  			}
    67  		})
    68  	}
    69  }
    70  
    71  func TestLCController_updatelngcodbyid(t *testing.T) {
    72  	type args struct {
    73  		db       *dbconn.DBOperation
    74  		id       int
    75  		lngcode  string
    76  		text     string
    77  		language string
    78  		User     string
    79  	}
    80  	tests := []struct {
    81  		name    string
    82  		f       *LCController
    83  		args    args
    84  		wantErr bool
    85  	}{
    86  		// TODO: Add test cases.
    87  	}
    88  	for _, tt := range tests {
    89  		t.Run(tt.name, func(t *testing.T) {
    90  			if err := tt.f.updatelngcodbyid(tt.args.db, tt.args.id, tt.args.lngcode, tt.args.text, tt.args.language, tt.args.User); (err != nil) != tt.wantErr {
    91  				t.Errorf("LCController.updatelngcodbyid() error = %v, wantErr %v", err, tt.wantErr)
    92  			}
    93  		})
    94  	}
    95  }
    96  
    97  func TestLCController_populatesinglelngcodes(t *testing.T) {
    98  	type args struct {
    99  		db       *dbconn.DBOperation
   100  		lngcode  string
   101  		text     string
   102  		language string
   103  		User     string
   104  	}
   105  	tests := []struct {
   106  		name string
   107  		f    *LCController
   108  		args args
   109  	}{
   110  		// TODO: Add test cases.
   111  	}
   112  	for _, tt := range tests {
   113  		t.Run(tt.name, func(t *testing.T) {
   114  			tt.f.populatesinglelngcodes(tt.args.db, tt.args.lngcode, tt.args.text, tt.args.language, tt.args.User)
   115  		})
   116  	}
   117  }
   118  
   119  func TestLCController_populatelngcodes(t *testing.T) {
   120  	type args struct {
   121  		lngcodes []string
   122  		text     []string
   123  		language string
   124  		User     string
   125  	}
   126  	tests := []struct {
   127  		name string
   128  		f    *LCController
   129  		args args
   130  	}{
   131  		// TODO: Add test cases.
   132  	}
   133  	for _, tt := range tests {
   134  		t.Run(tt.name, func(t *testing.T) {
   135  			tt.f.populatelngcodes(tt.args.lngcodes, tt.args.text, tt.args.language, tt.args.User)
   136  		})
   137  	}
   138  }