Uh oh!
There was an error while loading. Please reload this page.
Added tests and docs to custom file class - #59
Conversation
… get routine "get.fileCount()"
…ialiseParameters" corrected to "numParams"
…iseCustomFileClassOneRow". Also removed code setting dependent property "fileCount"
…ewParams". Also added identifiers to error messages in "customFileClass" for testing.
…omFileClass" and removed redundant routine "getCustomNames"
…licate names are matched correctly
…CustomName", and "setFileName" in "customFileClass"
… array "fileList" in routine "toStruct"
… MException for repeated errors.
…invalidNumberOfInputs.m", "nameNotRecognised.m", "invalidInput.m", "invalidOption.m"
…upport for the language "Octave" from "customFileClass.m".
…ustomFile" for the initial row of the table.
…ectClass.m", alongside tests.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| @@ -0,0 +1,10 @@ | |||
| classdef invalidInput < MException | |||
There was a problem hiding this comment.
What is the difference btw invalid type and invalid input?
There was a problem hiding this comment.
As I was developing the exceptions Invalid input split into invalid type and invalid number of inputs. I'll remove this one and we can always readd it later if needs be.
| initialTypesCount = 1; | ||
| initialTypesAutoNameCounter = 1; | ||
| initialTypesAutoNameString = 'Row'; | ||
| exampleTable % Example Multi-Type Table for testing |
There was a problem hiding this comment.
I don't think there is any benefit to semicolon but its used in some classes so we have to agree a style an unify all
There was a problem hiding this comment.
I'd spotted this as well. I'll take the semicolons out, which I prefer.
Adds the class "testCustomFileClass" which sets out a suite of explicit tests for the custom file class within project class.
Adds custom RAT exceptions to utilities/exceptions and implements them in "customFileClass.m"
Tests for custom exceptions included in "testExceptions"