VB10 / flutter-architecture-template

Flutter Architecture Complete App
https://vb10.dev/#/
Apache License 2.0
650 stars 130 forks source link

OnBoard String Upper Case Test #11

Closed alperenekin closed 4 years ago

alperenekin commented 4 years ago

test("String Helper Upper Case", () { String text = " Helelo"; text = stringHelper.toUpper(text); expect(text.contains(RegExp("[A-Z\s]+")), true); });

toUpper fonksiyonu çağrılmadığında da test geçiyor. RegExp sanırım string içinde uppercase var mı diye kontrol ediyor bu şekilde. Belki testte expecti elle vermek çözebilir daha iyi bir yöntem bulamadım :)

VB10 commented 4 years ago

bu regexi extension yazaarak ortaklatirabiliriz devaminda sorun kalmayacaktir