@@ -4,7 +4,7 @@ import { ResultRecord } from "../view-models/result-record";
44
55describe ( "CollectionUtils" , ( ) => {
66 describe ( "hasValues" , ( ) => {
7- test ( "when collections param is null, it returns false" , ( ) : void => {
7+ test ( "given collections is null, it returns false" , ( ) : void => {
88 // Arrange
99 const collection = null ;
1010
@@ -15,7 +15,7 @@ describe("CollectionUtils", () => {
1515 expect ( result ) . toBeFalse ( ) ;
1616 } ) ;
1717
18- test ( "when collections param is undefined, it returns false" , ( ) : void => {
18+ test ( "given collections is undefined, it returns false" , ( ) : void => {
1919 // Arrange
2020 const collection = undefined ;
2121
@@ -133,7 +133,7 @@ describe("CollectionUtils", () => {
133133 } ) ; // end hasValues
134134
135135 describe ( "isEmpty" , ( ) => {
136- test ( `when collections is null, it returns true` , ( ) : void => {
136+ test ( `given collections is null, it returns true` , ( ) : void => {
137137 // Arrange
138138 const collection = null ;
139139
@@ -144,7 +144,7 @@ describe("CollectionUtils", () => {
144144 expect ( result ) . toBeTrue ( ) ;
145145 } ) ;
146146
147- test ( `when collections is undefined, it returns true` , ( ) : void => {
147+ test ( `given collections is undefined, it returns true` , ( ) : void => {
148148 // Arrange
149149 const collection = undefined ;
150150
0 commit comments