[SDC] OnBoard with enabled tests and features

Change-Id: I4c1bbf6e1c854cf97a3561c736f83da44b58b7c0
Signed-off-by: az2497 <avi.ziv@amdocs.com>

[SDC] OnBoard with enabled tests and features.

Change-Id: Icd52f039aee4dd393a1404d530bb9fdd0b20e604
Signed-off-by: az2497 <avi.ziv@amdocs.com>
diff --git a/openecomp-ui/test-utils/MockSVGIcon.js b/openecomp-ui/test-utils/MockSVGIcon.js
new file mode 100644
index 0000000..6ce76cf
--- /dev/null
+++ b/openecomp-ui/test-utils/MockSVGIcon.js
@@ -0,0 +1,17 @@
+import React from 'react';
+//import ReactDOMServer from 'react-dom/server';
+
+const SVGIcon = ({name, onClick, label, className, iconClassName, labelClassName, labelPosition, color, disabled, ...other}) => {
+	let colorClass = (color !== '') ? '__' + color : '';
+	let classes = `svg-icon-wrapper ${iconClassName} ${className} ${colorClass} ${onClick ? 'clickable' : ''} ${disabled ? 'disabled' : ''} ${labelPosition}`;
+
+	let iconMock = (
+		<div {...other} onClick={onClick} className={classes}>
+			<span className={`svg-icon __${name} ${disabled ? 'disabled' : ''}`} />
+			{label && <span className={`svg-icon-label ${labelClassName}`}>{label}</span>}
+		</div>
+	);
+//	console.log(ReactDOMServer.renderToStaticMarkup(iconMock));
+	return iconMock;
+};
+export default SVGIcon;
diff --git a/openecomp-ui/test-utils/factories/licenseModel/LimitFactories.js b/openecomp-ui/test-utils/factories/licenseModel/LimitFactories.js
index a08e7e6..5ad8b12 100644
--- a/openecomp-ui/test-utils/factories/licenseModel/LimitFactories.js
+++ b/openecomp-ui/test-utils/factories/licenseModel/LimitFactories.js
@@ -19,20 +19,20 @@
 import IdMixin from 'test-utils/factories/mixins/IdMixin.js';
 
 Factory.define('LimitBaseFactory')
-	.attrs({		
+	.attrs({
 		name: 'SpLimit1',
 		type: limitType.SERVICE_PROVIDER,
 		description: 'fgfg',
-		metric: 'CPU',
 		value: 45,
-		unit: 55,
 		aggregationFunction: 'Peak',
-		time: 'Day'		
+		time: 'Day'
 	});
 
 export const LimitPostFactory = new Factory()
+	.attrs({metric: {choice: 'BWDT', other: ''}, unit: {choice: 'GB', other: ''}})
 	.extend('LimitBaseFactory');
 
 export const LimitItemFactory = new Factory()
+	.attrs({metric: 'BWDT', unit:  'GB'})
 	.extend('LimitBaseFactory')
-	.extend(IdMixin);	
+	.extend(IdMixin);