Assertion for testing if a string is lexicographically greater than or equal
to another string.
Example
expect('b','to be greater than or equal to','a');// passes expect('a','to be greater than or equal to','a');// passes expect('a','to be greater than or equal to','b');// fails
Assertion for testing if a string is lexicographically greater than or equal to another string.