[Scripter]
* NEW Added ability for user to define special plugin properties to be quieried at runtime
This commit is contained in:
parent
c968d321c9
commit
968eee59b3
2 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@ Public Sub DoAPlugin()
|
|||
Assert.Equals(TestPlugin2.Name, "AnotherTest", "Verify that Plugin Properties Where Created - Plugin Name")
|
||||
Assert.Equals(TestPlugin2.Title, "Plugin tester Too", "Verify that Plugin Properties Where Created - Title")
|
||||
Assert.Equals(TestPlugin2.Description, "This plugin is a test for the scripter too", "Verify that Plugin Properties Where Created - Description")
|
||||
'Test of special plugin property
|
||||
Assert.Equals(TestPlugin2.MyProp, "Added Plugin Special prop", "Verify that Plugin User Defined Properties Where Created - MyProp")
|
||||
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#Script Version="8.9.3"
|
||||
#Script Title="Plugin tester"
|
||||
#Script Description="This plugin is a test for the scripter"
|
||||
#Script Property=APPINTERFACE:"20.0.2"
|
||||
|
||||
Public $sParmInfo as string = ""
|
||||
|
||||
|
|
Loading…
Reference in a new issue