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.
csnvmtest.cpp
00001 /* 00002 * Copyright (c) 2016 ARM Limited. All rights reserved. 00003 */ 00004 00005 #include "CppUTest/TestHarness.h" 00006 #include "test_cs_nvm.h" 00007 00008 TEST_GROUP(CS_NVM) 00009 { 00010 void setup() { 00011 00012 } 00013 00014 void teardown() { 00015 00016 } 00017 }; 00018 00019 TEST(CS_NVM, test_cs_nvm_operation_in_progress) 00020 { 00021 CHECK(test_cs_nvm_operation_in_progress() == true); 00022 } 00023 00024 TEST(CS_NVM, test_cs_nvm_flush) 00025 { 00026 CHECK(test_cs_nvm_flush() == true); 00027 } 00028 00029 TEST(CS_NVM, test_cs_nvm_write_failure_in_close) 00030 { 00031 CHECK(test_cs_nvm_write_failure_in_close() == true); 00032 } 00033 00034 TEST(CS_NVM, test_cs_nvm_write_failure) 00035 { 00036 CHECK(test_cs_nvm_write_failure() == true); 00037 } 00038 00039 TEST(CS_NVM, test_cs_nvm_write) 00040 { 00041 CHECK(test_cs_nvm_write() == true); 00042 } 00043 00044 TEST(CS_NVM, test_cs_nvm_read_failure_in_close) 00045 { 00046 CHECK(test_cs_nvm_read_failure_in_close() == true); 00047 } 00048 00049 TEST(CS_NVM, test_cs_nvm_read_failure) 00050 { 00051 CHECK(test_cs_nvm_read_failure() == true); 00052 } 00053 00054 TEST(CS_NVM, test_cs_nvm_read) 00055 { 00056 CHECK(test_cs_nvm_read() == true); 00057 } 00058 00059 TEST(CS_NVM, test_cs_nvm_key_delete_failure_in_close) 00060 { 00061 CHECK(test_cs_nvm_key_delete_failure_in_close() == true); 00062 } 00063 00064 TEST(CS_NVM, test_cs_nvm_key_delete) 00065 { 00066 CHECK(test_cs_nvm_key_delete() == true); 00067 } 00068 00069 TEST(CS_NVM, test_cs_nvm_key_create) 00070 { 00071 CHECK(test_cs_nvm_key_create() == true); 00072 } 00073 00074 TEST(CS_NVM, test_cs_nvm_init_finalize) 00075 { 00076 CHECK(test_cs_nvm_init_finalize() == true); 00077 } 00078
Generated on Tue Jul 12 2022 12:43:47 by
