summaryrefslogtreecommitdiff
path: root/src/components/media_manager
diff options
context:
space:
mode:
authorElisey Zamakhov <EZamakhov@luxoft.com>2015-03-04 18:32:44 +0300
committerElisey Zamakhov <EZamakhov@luxoft.com>2015-03-18 13:48:18 +0300
commit3fb3b2a03366eddea6d5658aaa7c8d9a360f5b71 (patch)
tree183ecdbc39f5d629734a383bfb418a8de5f2e0ed /src/components/media_manager
parente1d6b9b88e412ea240e1cf9b5764bb5f67854bd9 (diff)
downloadsdl_core-3fb3b2a03366eddea6d5658aaa7c8d9a360f5b71.tar.gz
Add one test main.cc file with correct logger deinitialization
Diffstat (limited to 'src/components/media_manager')
-rw-r--r--src/components/media_manager/test/CMakeLists.txt1
-rw-r--r--src/components/media_manager/test/main.cc39
2 files changed, 0 insertions, 40 deletions
diff --git a/src/components/media_manager/test/CMakeLists.txt b/src/components/media_manager/test/CMakeLists.txt
index 5e5597e881..1146aacff0 100644
--- a/src/components/media_manager/test/CMakeLists.txt
+++ b/src/components/media_manager/test/CMakeLists.txt
@@ -44,7 +44,6 @@ endif()
set(SOURCES
media_manager_impl_test.cc
- main.cc
)
set(LIBRARIES
diff --git a/src/components/media_manager/test/main.cc b/src/components/media_manager/test/main.cc
deleted file mode 100644
index ed4c5e32b3..0000000000
--- a/src/components/media_manager/test/main.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (c) 2014, Ford Motor Company
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following
- * disclaimer in the documentation and/or other materials provided with the
- * distribution.
- *
- * Neither the name of the Ford Motor Company nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "gmock/gmock.h"
-
-int main(int argc, char** argv) {
- testing::InitGoogleMock(&argc, argv);
- return RUN_ALL_TESTS();
-}
-