Design and implement a simplified in-memory file system. Your file system should support the following operations:
ls(path): Given a path in the file system, return a list of files and directories in lexicographical order. If the path is a file path, return a list containing just the file name.
mkdir(path): Create a new directory at the specified path. If intermediate directories do not exist, create them as well.
addContentToFile(filePath, content): Create a file if it does not exist and append the given content to the file.
readContentFromFile(filePath): Return the content of the file at the specified path.
Assume the root path is '/' and all paths are absolute. Your design should efficiently support the operations above. Implement your solution in a programming language of your choice and include unit tests to demonstrate the correctness of your implementation.