Your tests seem OK, but the phrase "edge case" normally refers to the tests and checks you need to do around the limits of the input.
Say you have a column in your database that can accept 50 characters. Your edge case tests are:
- Save a string of 49 characters - success
- Save a string of 50 characters - success (or perhaps failure because of the null termination character, depending on your language)
- Save a string of 51 characters - failure
You can see that you are testing around and at the edges of your application where there are most likely to be errors. In this case there could be some confusion of the number of usable characters you can store which could cause errors in applications writing to your database.
Other tests where you would test saving a string of 20 characters and saving a string of 100 characters (say) should be done but these are going to be more stable.