BCModules.testgen = {
	Index : Number,
	IsInstalled : Boolean,
	IsRequired : Boolean,
	Init : function(index, isRequired) {
		this.IsInstalled = false;		

		this.Index = index;
		this.IsRequired = isRequired;
		
		BCModules.RegisterModule(this);
	},
	Check : function() {
		// no autocheck
	}
}