ConfigOption now have a getType() method which returns a String which indicates what "type" of information it holds. The get/setType methods from ConfigVariableOption have been refactored to the name get/setVarianceType.
65 lines of code changed in:
Comparable has been implemented so that collections containing this object can be sorted in alphabetical order by name.
61 lines of code changed in:
Made comments on what I need to change to accomodate new design ideas. Resized the form so that it will be really big (almost full-screen in a 1024x768 resolution)
12 lines of code changed in:
ConfigurerGUI's main method now opens the GUI with the sample configuration found in sample_config.xml.
7 lines of code changed in:
Combobox actually loads test types now -- I need to make it of variable width, however, so that you can actually read the names of the tests if they're really long!
26 lines of code changed in:
Window now displays special JPanel custom to the test suite chosen. Combobox will hold a list of tests that can be run on the chosen service. I make slow progress, but it's forward motion!
107 lines of code changed in:
Created a JList for the TestSuites...will work with the panel on the right later for tests, options and whatnot. Slightly modified the constructor so I could run test data from the GenerateNetworkTestPackage. Need to figure out sizing issues when run.
201 lines of code changed in:
GUIs now generate resize code vice pack().
32 lines of code changed in:
Now imports the XStreamWrapper class vice XStream.
GUIHelper now sets defaults before components are initialized.
11 lines of code changed in:
Fixed JavaDoc problems.
26 lines of code changed in:
New Class. XStreamWrapper contains an XStream object and some simple interfaces to it with methods that only require the filename. The XStream object is publically accessible so it can be used as required by the project. All classes currently known are aliased to reasonable XML names (just their class names) with the XStream object this contains.
2 lines of code changed in:
No longer enforces scheduled downtimes to be in the future.
3 lines of code changed in:
Moved GenerateNetworkTestPackage to the main source. Since it is only a test source, it shouldn't be included in the final distribution, but from this location it can be normally run. It now writes to a sample config file when run.
23 lines of code changed in:
Adjusted Method. Test.getDefaultConfigValues is now protected. A new public method Test.getDefaultConfigValueCopy returns a copy of what Test.getDefaultConfigValues returns.
The constructor for TestItem now initializes its options with the default values of options for the test being tested.
61 lines of code changed in:
1) Adjusted Method. Test.verifyConfig now assigns an option a *copy* of a default value vice the actual default value.
8 lines of code changed in:
1) Added addXXX(Object), getXXX(int index), and removeXXX(int index) methods to objects which provided full access to the Vector they used to store information via getXXXs(). These methods are intended as convenience methods to make it easier to add, retrieve, and remove items scored inside these object's Vector fields.
241 lines of code changed in:
1) Implemented Methods. TestScoreEvent.getTime* (Generated / Completed / Reported) have been implemented.
58 lines of code changed in:
1) Implemented Method. ScoringRuleset.processTestEvent is now implemented.
2) Changed Return Type. ScoringRule.executeLogic now returns a TestScoreEvent as intended. ScoreEvent is only intended for documenting changes to score which aren't the result of a test (i.e. they are user-entered).
16 lines of code changed in:
1) Implemented the TestEvent constructor.
4 lines of code changed in:
1) New Constructor. Timestamp now has a constructor which takes a number of milliseconds since the epoch as an argument.
2) New Constructor. TimestampRange now has a constructor which takes a pair of Timestamps as arguments.
3) Implemented: NetworkTestPackage's methods are all now implemented.
51 lines of code changed in:
1) Timestamp and TimestampRange now implement Comparable for their respective classes.
46 lines of code changed in:
1) All classes which store data now implement java.io.serializable so that we can serialize them to XML or binary format as needed.
150 lines of code changed in:
Implemented w/o exceptions handled well
39 lines of code changed in:
Implemented w/o exceptions handled well
118 lines of code changed in:
1) Class added. TestMisconfigurationException added -- used to potentially log and explain errors
2) Method signature changed. Test.verifyConfigValue(...) -- Now throws a TestMisconfigurationException instead of returning a string explaining the error.
92 lines of code changed in:
Implemented
76 lines of code changed in:
Created!
62 lines of code changed in:
no message
11 lines of code changed in:
verifyConfig is now implemented
changed verifyConfigValue to not return anything and now throws a TestMisconfigurationException
78 lines of code changed in:
Still fine tuning the test event
9 lines of code changed in:
Class ready to go(actually works when testing) not really ready
122 lines of code changed in:
Modified this class so I can test out my test classes with main functions
6 lines of code changed in:
1) Updated Method: Test.getConfig( String optionName ) returns the **value** of the requested configuration option as an Object (it will really be an Integer, Double, String, etc.) now instead of a ConfigOption which was less useful and painful to cast.
10 lines of code changed in:
1) The abstract run method now has void for its return type. The results are being returned through the TestEvent passed in the argument list.
2) New Method: Test.getConfig( String optionName ) returns the value of the requested configuration option. This method was added for convenience.
31 lines of code changed in:
Initial revision
4733 lines of code changed in: