COMPMID-415: Rename TensorLibrary to AssetsLibrary

Change-Id: I0da73ae4b76a6778d3601ea5230dc5e17968deaf
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80936
Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
diff --git a/tests/validation/main.cpp b/tests/validation/main.cpp
index 6ec6885..a6c02ed 100644
--- a/tests/validation/main.cpp
+++ b/tests/validation/main.cpp
@@ -23,8 +23,8 @@
  */
 #define BOOST_TEST_ALTERNATIVE_INIT_API
 
+#include "AssetsLibrary.h"
 #include "Globals.h"
-#include "TensorLibrary.h"
 #include "Utils.h"
 #include "ValidationProgramOptions.h"
 #include "ValidationUserConfiguration.h"
@@ -46,7 +46,7 @@
 namespace test
 {
 ValidationUserConfiguration    user_config;
-std::unique_ptr<TensorLibrary> library;
+std::unique_ptr<AssetsLibrary> library;
 } // namespace test
 } // namespace arm_compute
 
@@ -54,15 +54,7 @@
 {
     GlobalFixture()
     {
-        if(user_config.seed.is_set())
-        {
-            library = arm_compute::support::cpp14::make_unique<TensorLibrary>(user_config.path.get(), user_config.seed);
-        }
-        else
-        {
-            library = arm_compute::support::cpp14::make_unique<TensorLibrary>(user_config.path.get());
-        }
-
+        library = arm_compute::support::cpp14::make_unique<AssetsLibrary>(user_config.path.get(), user_config.seed);
         std::cout << "Seed: " << library->seed() << "\n";
     }
 };