Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
nsnvmhelpertest.cpp
00001 /* 00002 * Copyright (c) 2016 ARM Limited. All rights reserved. 00003 */ 00004 #include "CppUTest/TestHarness.h" 00005 #include "test_ns_nvm_helper.h" 00006 00007 TEST_GROUP(NS_NVM_HELPER) 00008 { 00009 void setup() { 00010 00011 } 00012 00013 void teardown() { 00014 00015 } 00016 }; 00017 00018 TEST(NS_NVM_HELPER, test_ns_nvm_helper_platform_error_in_write) 00019 { 00020 CHECK(test_ns_nvm_helper_platform_error_in_write() == true); 00021 } 00022 00023 TEST(NS_NVM_HELPER, test_ns_nvm_helper_platform_error) 00024 { 00025 CHECK(test_ns_nvm_helper_platform_error() == true); 00026 } 00027 00028 TEST(NS_NVM_HELPER, test_ns_nvm_helper_concurrent_requests) 00029 { 00030 CHECK(test_ns_nvm_helper_concurrent_requests() == true); 00031 } 00032 00033 TEST(NS_NVM_HELPER, test_ns_nvm_helper_read) 00034 { 00035 CHECK(test_ns_nvm_helper_read() == true); 00036 } 00037 00038 TEST(NS_NVM_HELPER, test_ns_nvm_helper_delete) 00039 { 00040 CHECK(test_ns_nvm_helper_delete() == true); 00041 } 00042 00043 /* Write must be the last test (executed first) as it initialized the platform NVM */ 00044 TEST(NS_NVM_HELPER, test_ns_nvm_helper_write) 00045 { 00046 CHECK(test_ns_nvm_helper_write() == true); 00047 } 00048
Generated on Tue Jul 12 2022 13:31:10 by
