Ejemplo n.º 1
0
        public void CreateFile_ThrowException_WhenPathDataIsNull()
        {
            var path = string.Empty;

            FilesOperations.SaveDataIntoFile(path, null);
        }
Ejemplo n.º 2
0
        public void CreateFile_ThrowException_WhenPathIsEmpty()
        {
            var path = string.Empty;

            FilesOperations.SaveDataIntoFile(path, new double[1][]);
        }