File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { LowerCaseConversion } from '../LowerCaseConversion'
2
+
3
+ test ( 'The LowerCaseConversion of ApoLO is apolo' , ( ) => {
4
+ const res = LowerCaseConversion ( 'ApoLO' )
5
+ expect ( res ) . toBe ( 'apolo' )
6
+ } )
7
+
8
+ test ( 'The LowerCaseConversion of WEB is web' , ( ) => {
9
+ const res = LowerCaseConversion ( 'WEB' )
10
+ expect ( res ) . toBe ( 'web' )
11
+ } )
12
+
13
+ test ( 'The LowerCaseConversion of EaRTh is earth' , ( ) => {
14
+ const res = LowerCaseConversion ( 'EaRTh' )
15
+ expect ( res ) . toBe ( 'earth' )
16
+ } )
17
+
18
+ test ( 'The LowerCaseConversion of TiGER is tiger' , ( ) => {
19
+ const res = LowerCaseConversion ( 'TiGER' )
20
+ expect ( res ) . toBe ( 'tiger' )
21
+ } )
22
+
23
+ test ( 'The LowerCaseConversion of Cricket is cricket' , ( ) => {
24
+ const res = LowerCaseConversion ( 'Cricket' )
25
+ expect ( res ) . toBe ( 'cricket' )
26
+ } )
You can’t perform that action at this time.
0 commit comments