Skip to content

Commit dc87629

Browse files
Teppo JärvelinAri Parkkila
authored andcommitted
Fixed unit test after removing mux.
1 parent 7c9f5f3 commit dc87629

File tree

4 files changed

+0
-30
lines changed

4 files changed

+0
-30
lines changed

features/cellular/UNITTESTS/at/at_cellulardevice/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ TEST_SRC_FILES = \
1616
../../stubs/AT_CellularSIM_stub.cpp \
1717
../../stubs/AT_CellularPower_stub.cpp \
1818
../../stubs/AT_CellularInformation_stub.cpp \
19-
../../stubs/AT_CellularMultiplexer_stub.cpp \
2019
../../stubs/CellularUtil_stub.cpp \
2120
../../stubs/AT_CellularBase_stub.cpp \
2221
../../stubs/NetworkInterface_stub.cpp \

features/cellular/UNITTESTS/at/at_cellulardevice/at_cellulardevicetest.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@ TEST(AT_CellularDevice, test_AT_CellularDevice_open_sim)
6767
unit->test_AT_CellularDevice_open_sim();
6868
}
6969

70-
TEST(AT_CellularDevice, test_AT_CellularDevice_open_multiplexer)
71-
{
72-
unit->test_AT_CellularDevice_open_multiplexer();
73-
}
74-
7570
TEST(AT_CellularDevice, test_AT_CellularDevice_open_information)
7671
{
7772
unit->test_AT_CellularDevice_open_information();
@@ -97,11 +92,6 @@ TEST(AT_CellularDevice, test_AT_CellularDevice_close_sim)
9792
unit->test_AT_CellularDevice_close_sim();
9893
}
9994

100-
TEST(AT_CellularDevice, test_AT_CellularDevice_close_multiplexer)
101-
{
102-
unit->test_AT_CellularDevice_close_multiplexer();
103-
}
104-
10595
TEST(AT_CellularDevice, test_AT_CellularDevice_close_information)
10696
{
10797
unit->test_AT_CellularDevice_close_information();

features/cellular/UNITTESTS/at/at_cellulardevice/test_at_cellulardevice.cpp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,6 @@ void Test_AT_CellularDevice::test_AT_CellularDevice_open_sim()
100100
CHECK(dev.open_sim(&fh1));
101101
}
102102

103-
void Test_AT_CellularDevice::test_AT_CellularDevice_open_multiplexer()
104-
{
105-
EventQueue que;
106-
AT_CellularDevice dev(que);
107-
FileHandle_stub fh1;
108-
109-
CHECK(!dev.open_multiplexer(NULL));
110-
CHECK(dev.open_multiplexer(&fh1));
111-
}
112-
113103
void Test_AT_CellularDevice::test_AT_CellularDevice_open_information()
114104
{
115105
EventQueue que;
@@ -140,11 +130,6 @@ void Test_AT_CellularDevice::test_AT_CellularDevice_close_sim()
140130

141131
}
142132

143-
void Test_AT_CellularDevice::test_AT_CellularDevice_close_multiplexer()
144-
{
145-
146-
}
147-
148133
void Test_AT_CellularDevice::test_AT_CellularDevice_close_information()
149134
{
150135
EventQueue que;

features/cellular/UNITTESTS/at/at_cellulardevice/test_at_cellulardevice.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ class Test_AT_CellularDevice
3636

3737
void test_AT_CellularDevice_open_sim();
3838

39-
void test_AT_CellularDevice_open_multiplexer();
40-
4139
void test_AT_CellularDevice_open_information();
4240

4341
void test_AT_CellularDevice_close_network();
@@ -48,8 +46,6 @@ class Test_AT_CellularDevice
4846

4947
void test_AT_CellularDevice_close_sim();
5048

51-
void test_AT_CellularDevice_close_multiplexer();
52-
5349
void test_AT_CellularDevice_close_information();
5450
};
5551

0 commit comments

Comments
 (0)