Performance score 1.0 means both sides equal (ratio), and tests setup so lower is generally better

[[[Started testing at: Fri Sep 16 1:58:44 2022]]]

Using TIME MULTIPLIER: 15

Test Test of simple locking strategies (mutex v shared_ptr copy) (mutex vs shared_ptr<> copy)
	PERFORMANCE_SCORE	0.79
	DETAILS:         	[baseline test 6.64384 secs, and comparison 5.25971 sec, and warnIfPerfScore > 0.65, and perfScore=0.791667]
	                 	shared_ptr<> copy is FASTER

Test Test of simple locking strategies (mutex v SpinLock) (mutex vs SpinLock)
	PERFORMANCE_SCORE	0.39
	DETAILS:         	[baseline test 9.45138 secs, and comparison 3.66701 sec, and warnIfPerfScore > 0.5, and perfScore=0.387987]
	                 	SpinLock is FASTER

Test std::shared_ptr versus Memory::SharedPtr (shared_ptr vs SharedPtr)
	PERFORMANCE_SCORE	0.93
	DETAILS:         	[baseline test 9.04728 secs, and comparison 8.4398 sec, and warnIfPerfScore > 1.05, and perfScore=0.932855]
	                 	SharedPtr is FASTER

Test std::shared_ptr (make_shared) versus Memory::SharedPtr (shared_ptr vs SharedPtr)
	PERFORMANCE_SCORE	1.3
	DETAILS:         	[baseline test 7.12959 secs, and comparison 8.9419 sec, and warnIfPerfScore > 1.15, and perfScore=1.2542]
	                 	SharedPtr is ***SLOWER***

Test Simple Struct With Strings Filling And Copying (wstring vs Charactes::String)
	PERFORMANCE_SCORE	0.51
	DETAILS:         	[baseline test 5.44113 secs, and comparison 2.80067 sec, and warnIfPerfScore > 0.48, and perfScore=0.514722]
	                 	Charactes::String is FASTER

Test Simple Struct With Strings Filling And Copying2 (wstring vs Charactes::String)
	PERFORMANCE_SCORE	0.57
	DETAILS:         	[baseline test 6.70039 secs, and comparison 3.79686 sec, and warnIfPerfScore > 0.57, and perfScore=0.566662]
	                 	Charactes::String is FASTER

Test Simple String append test (+='string object') 10x (wstring vs Charactes::String)
	PERFORMANCE_SCORE	3.5
	DETAILS:         	[baseline test 5.51797 secs, and comparison 19.4605 sec, and warnIfPerfScore > 2.9, and perfScore=3.52674]
	                 	Charactes::String is ***SLOWER***

Test Simple String append test (+=wchar_t[]) 10x (wstring vs Charactes::String)
	PERFORMANCE_SCORE	3.6
	DETAILS:         	[baseline test 5.88233 secs, and comparison 21.036 sec, and warnIfPerfScore > 2.9, and perfScore=3.57614]
	                 	Charactes::String is ***SLOWER***

Test Simple String append test (+=wchar_t[]) 100x (wstring vs Charactes::String)
	PERFORMANCE_SCORE	12
	DETAILS:         	[baseline test 5.44713 secs, and comparison 66.7182 sec, and warnIfPerfScore > 24, and perfScore=12.2483]
	                 	Charactes::String is ***SLOWER***

Test String a + b (wstring vs String)
	PERFORMANCE_SCORE	1.7
	DETAILS:         	[baseline test 6.81409 secs, and comparison 11.3658 sec, and warnIfPerfScore > 1.7, and perfScore=1.66798]
	                 	String is ***SLOWER***

Test wstringstream << test (wstring vs Charactes::String)
	PERFORMANCE_SCORE	1
	DETAILS:         	[baseline test 7.14485 secs, and comparison 7.46108 sec, and warnIfPerfScore > 1.5, and perfScore=1.04426]
	                 	Charactes::String is ***SLOWER***

Test String::substr() (wstring vs Charactes::String)
	PERFORMANCE_SCORE	2.7
	DETAILS:         	[baseline test 4.862 secs, and comparison 13.1943 sec, and warnIfPerfScore > 2.1, and perfScore=2.71375]
	                 	Charactes::String is ***SLOWER***

Test wstringstream versus BasicTextOutputStream (wstringstream vs MemoryStream<Characters::Character>)
	PERFORMANCE_SCORE	0.82
	DETAILS:         	[baseline test 7.37824 secs, and comparison 6.05141 sec, and warnIfPerfScore > 1.6, and perfScore=0.82017]
	                 	MemoryStream<Characters::Character> is FASTER

Test wstringstream versus StringBuilder (wstringstream vs StringBuilder)
	PERFORMANCE_SCORE	0.46
	DETAILS:         	[baseline test 6.83004 secs, and comparison 3.12801 sec, and warnIfPerfScore > 0.23, and perfScore=0.457978]
	                 	StringBuilder is FASTER

Test Simple c_str() test (wstring vs Charactes::String)
	PERFORMANCE_SCORE	1.3
	DETAILS:         	[baseline test 5.73733 secs, and comparison 7.37975 sec, and warnIfPerfScore > 1.3, and perfScore=1.28627]
	                 	Charactes::String is ***SLOWER***

Test Sequence<int> basics (vector<int> vs Sequence<int>)
	PERFORMANCE_SCORE	2.6
	DETAILS:         	[baseline test 4.43893 secs, and comparison 11.73 sec, and warnIfPerfScore > 1.2, and perfScore=2.64253]
	                 	Sequence<int> is ***SLOWER***

Test Sequence<string> basics (vector<string> vs Sequence<string>)
	PERFORMANCE_SCORE	0.12
	DETAILS:         	[baseline test 24.3623 secs, and comparison 2.8717 sec, and warnIfPerfScore > 0.33, and perfScore=0.117874]
	                 	Sequence<string> is FASTER

Test Sequence_DoublyLinkedList<int> basics (vector<int> vs Sequence_DoublyLinkedList<int>)
	PERFORMANCE_SCORE	12
	DETAILS:         	[baseline test 3.90106 secs, and comparison 45.1313 sec, and warnIfPerfScore > 6, and perfScore=11.569]
	                 	Sequence_DoublyLinkedList<int> is ***SLOWER***

Test Sequence_Array<int> basics (vector<int> vs Sequence_Array<int>)
	PERFORMANCE_SCORE	2.3
	DETAILS:         	[baseline test 3.24084 secs, and comparison 7.30287 sec, and warnIfPerfScore > 0.8, and perfScore=2.25339]
	                 	Sequence_Array<int> is ***SLOWER***

Test Sequence_stdvector<int> basics (vector<int> vs Sequence_stdvector<int>)
	PERFORMANCE_SCORE	3.1
	DETAILS:         	[baseline test 3.25592 secs, and comparison 9.93124 sec, and warnIfPerfScore > 1.4, and perfScore=3.05021]
	                 	Sequence_stdvector<int> is ***SLOWER***

Test Sequence_DoublyLinkedList<string> basics (vector<string> vs Sequence_DoublyLinkedList<string>)
	PERFORMANCE_SCORE	0.2
	DETAILS:         	[baseline test 19.2977 secs, and comparison 3.7851 sec, and warnIfPerfScore > 0.65, and perfScore=0.196143]
	                 	Sequence_DoublyLinkedList<string> is FASTER

Test Collection<int> basics (vector<int> vs Collection<int>)
	PERFORMANCE_SCORE	6
	DETAILS:         	[baseline test 6.49019 secs, and comparison 38.9633 sec, and warnIfPerfScore > 4.4, and perfScore=6.00341]
	                 	Collection<int> is ***SLOWER***

Test Collection<string> basics (vector<string> vs Collection<string>)
	PERFORMANCE_SCORE	0.24
	DETAILS:         	[baseline test 18.4372 secs, and comparison 4.34705 sec, and warnIfPerfScore > 0.6, and perfScore=0.235776]
	                 	Collection<string> is FASTER

Test Collection_LinkedList<string> basics (vector<string> vs Collection_LinkedList<string>)
	PERFORMANCE_SCORE	0.23
	DETAILS:         	[baseline test 16.7338 secs, and comparison 3.8068 sec, and warnIfPerfScore > 0.6, and perfScore=0.227492]
	                 	Collection_LinkedList<string> is FASTER

Test Collection_stdforward_list<string> basics (vector<string> vs Collection_stdforward_list<string>)
	PERFORMANCE_SCORE	0.23
	DETAILS:         	[baseline test 17.6478 secs, and comparison 4.12843 sec, and warnIfPerfScore > 0.6, and perfScore=0.233935]
	                 	Collection_stdforward_list<string> is FASTER

Test Collection_stdmultiset<string> basics (vector<string> vs Collection_stdmultiset<string>)
	PERFORMANCE_SCORE	0.28
	DETAILS:         	[baseline test 22.7922 secs, and comparison 6.47993 sec, and warnIfPerfScore > 1.3, and perfScore=0.284304]
	                 	Collection_stdmultiset<string> is FASTER

Test Collection_stdmultiset<string> basics with rnd strings (vector<string> vs Collection_stdmultiset<string>)
	PERFORMANCE_SCORE	0.44
	DETAILS:         	[baseline test 24.5778 secs, and comparison 10.7691 sec, and warnIfPerfScore > 1.3, and perfScore=0.438165]
	                 	Collection_stdmultiset<string> is FASTER

Test std::set<int> vs Set<int> (set<int> vs Set<int>)
	PERFORMANCE_SCORE	0.37
	DETAILS:         	[baseline test 19.9156 secs, and comparison 7.30361 sec, and warnIfPerfScore > 0.3, and perfScore=0.366728]
	                 	Set<int> is FASTER

Test String Characters::Format () (sprintf vs String Characters::Format)
	PERFORMANCE_SCORE	1.4
	DETAILS:         	[baseline test 10.5535 secs, and comparison 14.8575 sec, and warnIfPerfScore > 1.5, and perfScore=1.40783]
	                 	String Characters::Format is ***SLOWER***

Test BLOB versus vector<byte> (vector<byte> vs BLOB)
	PERFORMANCE_SCORE	0.44
	DETAILS:         	[baseline test 8.03936 secs, and comparison 3.56356 sec, and warnIfPerfScore > 0.55, and perfScore=0.443265]
	                 	BLOB is FASTER

Test Test_JSONReadWriteFile (15.000000 seconds vs Test_JSONReadWriteFile)
	PERFORMANCE_SCORE	0.085
	DETAILS:         	[baseline test 15 secs, and comparison 1.27531 sec, and warnIfPerfScore > 0.1, and perfScore=0.0850205]
	                 	Test_JSONReadWriteFile is FASTER

Test Test_Optional_ (15.000000 seconds vs Test_Optional_)
	PERFORMANCE_SCORE	0.25
	DETAILS:         	[baseline test 15 secs, and comparison 3.82351 sec, and warnIfPerfScore > 0.5, and perfScore=0.254901]
	                 	Test_Optional_ is FASTER

[[[Tests took: 11 minutes, 18 seconds]]]

Succeeded
