GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

m_domTest   C
last analyzed

Complexity

Total Complexity 68

Size/Duplication

Total Lines 818
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 818
rs 5
wmc 68
lcom 1
cbo 1

68 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 5 1
A tearDown() 0 4 1
A testGet_panel_url_list() 0 7 1
A testGet_sub_domain_id_and_member_by_name() 0 7 1
A testHook_menu() 0 7 1
A testDomains_type_lst() 0 7 1
A testDomains_type_enable_values() 0 7 1
A testDomains_type_target_values() 0 7 1
A testImport_manual_dns_zone() 0 7 1
A testImport_manual_dns_entry() 0 7 1
A testIs_it_a_redirect() 0 7 1
A testDomains_type_regenerate() 0 7 1
A testDomains_type_get() 0 7 1
A testDomains_type_del() 0 7 1
A testDomains_type_update() 0 7 1
A testSub_domain_change_status() 0 7 1
A testEnum_domains() 0 7 1
A testDel_domain_cancel() 0 7 1
A testDel_domain() 0 7 1
A testDomshort() 0 7 1
A testAdd_domain() 0 7 1
A testCreate_default_subdomains() 0 7 1
A testDomdefaultdir() 0 7 1
A testDump_axfr() 0 7 1
A testLst_default_subdomains() 0 7 1
A testUpdate_default_subdomains() 0 7 1
A testUpdate_one_default() 0 7 1
A testDel_default_type() 0 7 1
A testWhois() 0 7 1
A testCheckmx() 0 7 1
A testGet_domain_all() 0 7 1
A testGet_sub_domain_all() 0 7 1
A testCheck_type_value() 0 7 1
A testCan_create_subdomain() 0 7 1
A testSet_sub_domain() 0 7 1
A testDel_sub_domain() 0 7 1
A testSet_ttl() 0 7 1
A testEdit_domain() 0 7 1
A testEnum_slave_ip() 0 7 1
A testAdd_slave_ip() 0 7 1
A testDel_slave_ip() 0 7 1
A testCheck_slave_account() 0 7 1
A testEcho_domain_list() 0 7 1
A testGet_domain_list() 0 7 1
A testGet_domain_all_summary() 0 7 1
A testGet_domain_byid() 0 7 1
A testGet_domain_byname() 0 7 1
A testCount_domains_all() 0 7 1
A testEnum_slave_account() 0 7 1
A testAdd_slave_account() 0 7 1
A testDel_slave_account() 0 7 1
A testLock() 0 7 1
A testUnlock() 0 7 1
A testHook_dom_add_mx_domain() 0 7 1
A testHook_admin_del_member() 0 7 1
A testHook_quota_get() 0 7 1
A testAlternc_export_conf() 0 7 1
A testGeneration_parameters() 0 7 1
A testGeneration_domains_type() 0 7 1
A testGenerate_conf_oldhook() 0 7 1
A testGenerate_apacheconf() 0 7 1
A testGeneration_todo() 0 7 1
A testSubdomain_modif_are_done() 0 7 1
A testSet_dns_action() 0 7 1
A testSet_dns_result() 0 7 1
A testHook_upnp_list() 0 7 1
A testGet_problems() 0 7 1
A testDefault_domain_type() 0 7 1

How to fix   Complexity   

Complex Class

Complex classes like m_domTest often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

While breaking up the class, it is a good idea to analyze how other classes use m_domTest, and based on these observations, apply Extract Interface, too.

1
<?php
2
/**
3
 * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2014-03-13 at 15:55:58.
4
 */
5
class m_domTest extends PHPUnit_Framework_TestCase
6
{
7
    /**
8
     * @var m_dom
9
     */
10
    protected $object;
11
12
    /**
13
     * Sets up the fixture, for example, opens a network connection.
14
     * This method is called before a test is executed.
15
     */
16
    protected function setUp()
17
    {
18
        parent::setUp();
19
        $this->object = new m_dom;
20
    }
21
22
    /**
23
     * Tears down the fixture, for example, closes a network connection.
24
     * This method is called after a test is executed.
25
     */
26
    protected function tearDown()
27
    {
28
        parent::tearDown();
29
    }
30
31
    /**
32
     * @covers m_dom::get_panel_url_list
33
     * @todo   Implement testGet_panel_url_list().
34
     */
35
    public function testGet_panel_url_list()
36
    {
37
        // Remove the following lines when you implement this test.
38
        $this->markTestIncomplete(
39
          'This test has not been implemented yet.'
40
        );
41
    }
42
43
    /**
44
     * @covers m_dom::get_sub_domain_id_and_member_by_name
45
     * @todo   Implement testGet_sub_domain_id_and_member_by_name().
46
     */
47
    public function testGet_sub_domain_id_and_member_by_name()
48
    {
49
        // Remove the following lines when you implement this test.
50
        $this->markTestIncomplete(
51
          'This test has not been implemented yet.'
52
        );
53
    }
54
55
    /**
56
     * @covers m_dom::hook_menu
57
     * @todo   Implement testHook_menu().
58
     */
59
    public function testHook_menu()
60
    {
61
        // Remove the following lines when you implement this test.
62
        $this->markTestIncomplete(
63
          'This test has not been implemented yet.'
64
        );
65
    }
66
67
    /**
68
     * @covers m_dom::domains_type_lst
69
     * @todo   Implement testDomains_type_lst().
70
     */
71
    public function testDomains_type_lst()
72
    {
73
        // Remove the following lines when you implement this test.
74
        $this->markTestIncomplete(
75
          'This test has not been implemented yet.'
76
        );
77
    }
78
79
    /**
80
     * @covers m_dom::domains_type_enable_values
81
     * @todo   Implement testDomains_type_enable_values().
82
     */
83
    public function testDomains_type_enable_values()
84
    {
85
        // Remove the following lines when you implement this test.
86
        $this->markTestIncomplete(
87
          'This test has not been implemented yet.'
88
        );
89
    }
90
91
    /**
92
     * @covers m_dom::domains_type_target_values
93
     * @todo   Implement testDomains_type_target_values().
94
     */
95
    public function testDomains_type_target_values()
96
    {
97
        // Remove the following lines when you implement this test.
98
        $this->markTestIncomplete(
99
          'This test has not been implemented yet.'
100
        );
101
    }
102
103
    /**
104
     * @covers m_dom::import_manual_dns_zone
105
     * @todo   Implement testImport_manual_dns_zone().
106
     */
107
    public function testImport_manual_dns_zone()
108
    {
109
        // Remove the following lines when you implement this test.
110
        $this->markTestIncomplete(
111
          'This test has not been implemented yet.'
112
        );
113
    }
114
115
    /**
116
     * @covers m_dom::import_manual_dns_entry
117
     * @todo   Implement testImport_manual_dns_entry().
118
     */
119
    public function testImport_manual_dns_entry()
120
    {
121
        // Remove the following lines when you implement this test.
122
        $this->markTestIncomplete(
123
          'This test has not been implemented yet.'
124
        );
125
    }
126
127
    /**
128
     * @covers m_dom::is_it_a_redirect
129
     * @todo   Implement testIs_it_a_redirect().
130
     */
131
    public function testIs_it_a_redirect()
132
    {
133
        // Remove the following lines when you implement this test.
134
        $this->markTestIncomplete(
135
          'This test has not been implemented yet.'
136
        );
137
    }
138
139
    /**
140
     * @covers m_dom::domains_type_regenerate
141
     * @todo   Implement testDomains_type_regenerate().
142
     */
143
    public function testDomains_type_regenerate()
144
    {
145
        // Remove the following lines when you implement this test.
146
        $this->markTestIncomplete(
147
          'This test has not been implemented yet.'
148
        );
149
    }
150
151
    /**
152
     * @covers m_dom::domains_type_get
153
     * @todo   Implement testDomains_type_get().
154
     */
155
    public function testDomains_type_get()
156
    {
157
        // Remove the following lines when you implement this test.
158
        $this->markTestIncomplete(
159
          'This test has not been implemented yet.'
160
        );
161
    }
162
163
    /**
164
     * @covers m_dom::domains_type_del
165
     * @todo   Implement testDomains_type_del().
166
     */
167
    public function testDomains_type_del()
168
    {
169
        // Remove the following lines when you implement this test.
170
        $this->markTestIncomplete(
171
          'This test has not been implemented yet.'
172
        );
173
    }
174
175
    /**
176
     * @covers m_dom::domains_type_update
177
     * @todo   Implement testDomains_type_update().
178
     */
179
    public function testDomains_type_update()
180
    {
181
        // Remove the following lines when you implement this test.
182
        $this->markTestIncomplete(
183
          'This test has not been implemented yet.'
184
        );
185
    }
186
187
    /**
188
     * @covers m_dom::sub_domain_change_status
189
     * @todo   Implement testSub_domain_change_status().
190
     */
191
    public function testSub_domain_change_status()
192
    {
193
        // Remove the following lines when you implement this test.
194
        $this->markTestIncomplete(
195
          'This test has not been implemented yet.'
196
        );
197
    }
198
199
    /**
200
     * @covers m_dom::enum_domains
201
     * @todo   Implement testEnum_domains().
202
     */
203
    public function testEnum_domains()
204
    {
205
        // Remove the following lines when you implement this test.
206
        $this->markTestIncomplete(
207
          'This test has not been implemented yet.'
208
        );
209
    }
210
211
    /**
212
     * @covers m_dom::del_domain_cancel
213
     * @todo   Implement testDel_domain_cancel().
214
     */
215
    public function testDel_domain_cancel()
216
    {
217
        // Remove the following lines when you implement this test.
218
        $this->markTestIncomplete(
219
          'This test has not been implemented yet.'
220
        );
221
    }
222
223
    /**
224
     * @covers m_dom::del_domain
225
     * @todo   Implement testDel_domain().
226
     */
227
    public function testDel_domain()
228
    {
229
        // Remove the following lines when you implement this test.
230
        $this->markTestIncomplete(
231
          'This test has not been implemented yet.'
232
        );
233
    }
234
235
    /**
236
     * @covers m_dom::domshort
237
     * @todo   Implement testDomshort().
238
     */
239
    public function testDomshort()
240
    {
241
        // Remove the following lines when you implement this test.
242
        $this->markTestIncomplete(
243
          'This test has not been implemented yet.'
244
        );
245
    }
246
247
    /**
248
     * @covers m_dom::add_domain
249
     * @todo   Implement testAdd_domain().
250
     */
251
    public function testAdd_domain()
252
    {
253
        // Remove the following lines when you implement this test.
254
        $this->markTestIncomplete(
255
          'This test has not been implemented yet.'
256
        );
257
    }
258
259
    /**
260
     * @covers m_dom::create_default_subdomains
261
     * @todo   Implement testCreate_default_subdomains().
262
     */
263
    public function testCreate_default_subdomains()
264
    {
265
        // Remove the following lines when you implement this test.
266
        $this->markTestIncomplete(
267
          'This test has not been implemented yet.'
268
        );
269
    }
270
271
    /**
272
     * @covers m_dom::domdefaultdir
273
     * @todo   Implement testDomdefaultdir().
274
     */
275
    public function testDomdefaultdir()
276
    {
277
        // Remove the following lines when you implement this test.
278
        $this->markTestIncomplete(
279
          'This test has not been implemented yet.'
280
        );
281
    }
282
283
    /**
284
     * @covers m_dom::dump_axfr
285
     * @todo   Implement testDump_axfr().
286
     */
287
    public function testDump_axfr()
288
    {
289
        // Remove the following lines when you implement this test.
290
        $this->markTestIncomplete(
291
          'This test has not been implemented yet.'
292
        );
293
    }
294
295
    /**
296
     * @covers m_dom::lst_default_subdomains
297
     * @todo   Implement testLst_default_subdomains().
298
     */
299
    public function testLst_default_subdomains()
300
    {
301
        // Remove the following lines when you implement this test.
302
        $this->markTestIncomplete(
303
          'This test has not been implemented yet.'
304
        );
305
    }
306
307
    /**
308
     * @covers m_dom::update_default_subdomains
309
     * @todo   Implement testUpdate_default_subdomains().
310
     */
311
    public function testUpdate_default_subdomains()
312
    {
313
        // Remove the following lines when you implement this test.
314
        $this->markTestIncomplete(
315
          'This test has not been implemented yet.'
316
        );
317
    }
318
319
    /**
320
     * @covers m_dom::update_one_default
321
     * @todo   Implement testUpdate_one_default().
322
     */
323
    public function testUpdate_one_default()
324
    {
325
        // Remove the following lines when you implement this test.
326
        $this->markTestIncomplete(
327
          'This test has not been implemented yet.'
328
        );
329
    }
330
331
    /**
332
     * @covers m_dom::del_default_type
333
     * @todo   Implement testDel_default_type().
334
     */
335
    public function testDel_default_type()
336
    {
337
        // Remove the following lines when you implement this test.
338
        $this->markTestIncomplete(
339
          'This test has not been implemented yet.'
340
        );
341
    }
342
343
    /**
344
     * @covers m_dom::whois
345
     * @todo   Implement testWhois().
346
     */
347
    public function testWhois()
348
    {
349
        // Remove the following lines when you implement this test.
350
        $this->markTestIncomplete(
351
          'This test has not been implemented yet.'
352
        );
353
    }
354
355
    /**
356
     * @covers m_dom::checkmx
357
     * @todo   Implement testCheckmx().
358
     */
359
    public function testCheckmx()
360
    {
361
        // Remove the following lines when you implement this test.
362
        $this->markTestIncomplete(
363
          'This test has not been implemented yet.'
364
        );
365
    }
366
367
    /**
368
     * @covers m_dom::get_domain_all
369
     * @todo   Implement testGet_domain_all().
370
     */
371
    public function testGet_domain_all()
372
    {
373
        // Remove the following lines when you implement this test.
374
        $this->markTestIncomplete(
375
          'This test has not been implemented yet.'
376
        );
377
    }
378
379
    /**
380
     * @covers m_dom::get_sub_domain_all
381
     * @todo   Implement testGet_sub_domain_all().
382
     */
383
    public function testGet_sub_domain_all()
384
    {
385
        // Remove the following lines when you implement this test.
386
        $this->markTestIncomplete(
387
          'This test has not been implemented yet.'
388
        );
389
    }
390
391
    /**
392
     * @covers m_dom::check_type_value
393
     * @todo   Implement testCheck_type_value().
394
     */
395
    public function testCheck_type_value()
396
    {
397
        // Remove the following lines when you implement this test.
398
        $this->markTestIncomplete(
399
          'This test has not been implemented yet.'
400
        );
401
    }
402
403
    /**
404
     * @covers m_dom::can_create_subdomain
405
     * @todo   Implement testCan_create_subdomain().
406
     */
407
    public function testCan_create_subdomain()
408
    {
409
        // Remove the following lines when you implement this test.
410
        $this->markTestIncomplete(
411
          'This test has not been implemented yet.'
412
        );
413
    }
414
415
    /**
416
     * @covers m_dom::set_sub_domain
417
     * @todo   Implement testSet_sub_domain().
418
     */
419
    public function testSet_sub_domain()
420
    {
421
        // Remove the following lines when you implement this test.
422
        $this->markTestIncomplete(
423
          'This test has not been implemented yet.'
424
        );
425
    }
426
427
    /**
428
     * @covers m_dom::del_sub_domain
429
     * @todo   Implement testDel_sub_domain().
430
     */
431
    public function testDel_sub_domain()
432
    {
433
        // Remove the following lines when you implement this test.
434
        $this->markTestIncomplete(
435
          'This test has not been implemented yet.'
436
        );
437
    }
438
439
    /**
440
     * @covers m_dom::set_ttl
441
     * @todo   Implement testSet_ttl().
442
     */
443
    public function testSet_ttl()
444
    {
445
        // Remove the following lines when you implement this test.
446
        $this->markTestIncomplete(
447
          'This test has not been implemented yet.'
448
        );
449
    }
450
451
    /**
452
     * @covers m_dom::edit_domain
453
     * @todo   Implement testEdit_domain().
454
     */
455
    public function testEdit_domain()
456
    {
457
        // Remove the following lines when you implement this test.
458
        $this->markTestIncomplete(
459
          'This test has not been implemented yet.'
460
        );
461
    }
462
463
    /**
464
     * @covers m_dom::enum_slave_ip
465
     * @todo   Implement testEnum_slave_ip().
466
     */
467
    public function testEnum_slave_ip()
468
    {
469
        // Remove the following lines when you implement this test.
470
        $this->markTestIncomplete(
471
          'This test has not been implemented yet.'
472
        );
473
    }
474
475
    /**
476
     * @covers m_dom::add_slave_ip
477
     * @todo   Implement testAdd_slave_ip().
478
     */
479
    public function testAdd_slave_ip()
480
    {
481
        // Remove the following lines when you implement this test.
482
        $this->markTestIncomplete(
483
          'This test has not been implemented yet.'
484
        );
485
    }
486
487
    /**
488
     * @covers m_dom::del_slave_ip
489
     * @todo   Implement testDel_slave_ip().
490
     */
491
    public function testDel_slave_ip()
492
    {
493
        // Remove the following lines when you implement this test.
494
        $this->markTestIncomplete(
495
          'This test has not been implemented yet.'
496
        );
497
    }
498
499
    /**
500
     * @covers m_dom::check_slave_account
501
     * @todo   Implement testCheck_slave_account().
502
     */
503
    public function testCheck_slave_account()
504
    {
505
        // Remove the following lines when you implement this test.
506
        $this->markTestIncomplete(
507
          'This test has not been implemented yet.'
508
        );
509
    }
510
511
    /**
512
     * @covers m_dom::echo_domain_list
513
     * @todo   Implement testEcho_domain_list().
514
     */
515
    public function testEcho_domain_list()
516
    {
517
        // Remove the following lines when you implement this test.
518
        $this->markTestIncomplete(
519
          'This test has not been implemented yet.'
520
        );
521
    }
522
523
    /**
524
     * @covers m_dom::get_domain_list
525
     * @todo   Implement testGet_domain_list().
526
     */
527
    public function testGet_domain_list()
528
    {
529
        // Remove the following lines when you implement this test.
530
        $this->markTestIncomplete(
531
          'This test has not been implemented yet.'
532
        );
533
    }
534
535
    /**
536
     * @covers m_dom::get_domain_all_summary
537
     * @todo   Implement testGet_domain_all_summary().
538
     */
539
    public function testGet_domain_all_summary()
540
    {
541
        // Remove the following lines when you implement this test.
542
        $this->markTestIncomplete(
543
          'This test has not been implemented yet.'
544
        );
545
    }
546
547
    /**
548
     * @covers m_dom::get_domain_byid
549
     * @todo   Implement testGet_domain_byid().
550
     */
551
    public function testGet_domain_byid()
552
    {
553
        // Remove the following lines when you implement this test.
554
        $this->markTestIncomplete(
555
          'This test has not been implemented yet.'
556
        );
557
    }
558
559
    /**
560
     * @covers m_dom::get_domain_byname
561
     * @todo   Implement testGet_domain_byname().
562
     */
563
    public function testGet_domain_byname()
564
    {
565
        // Remove the following lines when you implement this test.
566
        $this->markTestIncomplete(
567
          'This test has not been implemented yet.'
568
        );
569
    }
570
571
    /**
572
     * @covers m_dom::count_domains_all
573
     * @todo   Implement testCount_domains_all().
574
     */
575
    public function testCount_domains_all()
576
    {
577
        // Remove the following lines when you implement this test.
578
        $this->markTestIncomplete(
579
          'This test has not been implemented yet.'
580
        );
581
    }
582
583
    /**
584
     * @covers m_dom::enum_slave_account
585
     * @todo   Implement testEnum_slave_account().
586
     */
587
    public function testEnum_slave_account()
588
    {
589
        // Remove the following lines when you implement this test.
590
        $this->markTestIncomplete(
591
          'This test has not been implemented yet.'
592
        );
593
    }
594
595
    /**
596
     * @covers m_dom::add_slave_account
597
     * @todo   Implement testAdd_slave_account().
598
     */
599
    public function testAdd_slave_account()
600
    {
601
        // Remove the following lines when you implement this test.
602
        $this->markTestIncomplete(
603
          'This test has not been implemented yet.'
604
        );
605
    }
606
607
    /**
608
     * @covers m_dom::del_slave_account
609
     * @todo   Implement testDel_slave_account().
610
     */
611
    public function testDel_slave_account()
612
    {
613
        // Remove the following lines when you implement this test.
614
        $this->markTestIncomplete(
615
          'This test has not been implemented yet.'
616
        );
617
    }
618
619
    /**
620
     * @covers m_dom::lock
621
     * @todo   Implement testLock().
622
     */
623
    public function testLock()
624
    {
625
        // Remove the following lines when you implement this test.
626
        $this->markTestIncomplete(
627
          'This test has not been implemented yet.'
628
        );
629
    }
630
631
    /**
632
     * @covers m_dom::unlock
633
     * @todo   Implement testUnlock().
634
     */
635
    public function testUnlock()
636
    {
637
        // Remove the following lines when you implement this test.
638
        $this->markTestIncomplete(
639
          'This test has not been implemented yet.'
640
        );
641
    }
642
643
    /**
644
     * @covers m_dom::hook_dom_add_mx_domain
645
     * @todo   Implement testHook_dom_add_mx_domain().
646
     */
647
    public function testHook_dom_add_mx_domain()
648
    {
649
        // Remove the following lines when you implement this test.
650
        $this->markTestIncomplete(
651
          'This test has not been implemented yet.'
652
        );
653
    }
654
655
    /**
656
     * @covers m_dom::hook_admin_del_member
657
     * @todo   Implement testHook_admin_del_member().
658
     */
659
    public function testHook_admin_del_member()
660
    {
661
        // Remove the following lines when you implement this test.
662
        $this->markTestIncomplete(
663
          'This test has not been implemented yet.'
664
        );
665
    }
666
667
    /**
668
     * @covers m_dom::hook_quota_get
669
     * @todo   Implement testHook_quota_get().
670
     */
671
    public function testHook_quota_get()
672
    {
673
        // Remove the following lines when you implement this test.
674
        $this->markTestIncomplete(
675
          'This test has not been implemented yet.'
676
        );
677
    }
678
679
    /**
680
     * @covers m_dom::alternc_export_conf
681
     * @todo   Implement testAlternc_export_conf().
682
     */
683
    public function testAlternc_export_conf()
684
    {
685
        // Remove the following lines when you implement this test.
686
        $this->markTestIncomplete(
687
          'This test has not been implemented yet.'
688
        );
689
    }
690
691
    /**
692
     * @covers m_dom::generation_parameters
693
     * @todo   Implement testGeneration_parameters().
694
     */
695
    public function testGeneration_parameters()
696
    {
697
        // Remove the following lines when you implement this test.
698
        $this->markTestIncomplete(
699
          'This test has not been implemented yet.'
700
        );
701
    }
702
703
    /**
704
     * @covers m_dom::generation_domains_type
705
     * @todo   Implement testGeneration_domains_type().
706
     */
707
    public function testGeneration_domains_type()
708
    {
709
        // Remove the following lines when you implement this test.
710
        $this->markTestIncomplete(
711
          'This test has not been implemented yet.'
712
        );
713
    }
714
715
    /**
716
     * @covers m_dom::generate_conf_oldhook
717
     * @todo   Implement testGenerate_conf_oldhook().
718
     */
719
    public function testGenerate_conf_oldhook()
720
    {
721
        // Remove the following lines when you implement this test.
722
        $this->markTestIncomplete(
723
          'This test has not been implemented yet.'
724
        );
725
    }
726
727
    /**
728
     * @covers m_dom::generate_apacheconf
729
     * @todo   Implement testGenerate_apacheconf().
730
     */
731
    public function testGenerate_apacheconf()
732
    {
733
        // Remove the following lines when you implement this test.
734
        $this->markTestIncomplete(
735
          'This test has not been implemented yet.'
736
        );
737
    }
738
739
    /**
740
     * @covers m_dom::generation_todo
741
     * @todo   Implement testGeneration_todo().
742
     */
743
    public function testGeneration_todo()
744
    {
745
        // Remove the following lines when you implement this test.
746
        $this->markTestIncomplete(
747
          'This test has not been implemented yet.'
748
        );
749
    }
750
751
    /**
752
     * @covers m_dom::subdomain_modif_are_done
753
     * @todo   Implement testSubdomain_modif_are_done().
754
     */
755
    public function testSubdomain_modif_are_done()
756
    {
757
        // Remove the following lines when you implement this test.
758
        $this->markTestIncomplete(
759
          'This test has not been implemented yet.'
760
        );
761
    }
762
763
    /**
764
     * @covers m_dom::set_dns_action
765
     * @todo   Implement testSet_dns_action().
766
     */
767
    public function testSet_dns_action()
768
    {
769
        // Remove the following lines when you implement this test.
770
        $this->markTestIncomplete(
771
          'This test has not been implemented yet.'
772
        );
773
    }
774
775
    /**
776
     * @covers m_dom::set_dns_result
777
     * @todo   Implement testSet_dns_result().
778
     */
779
    public function testSet_dns_result()
780
    {
781
        // Remove the following lines when you implement this test.
782
        $this->markTestIncomplete(
783
          'This test has not been implemented yet.'
784
        );
785
    }
786
787
    /**
788
     * @covers m_dom::hook_upnp_list
789
     * @todo   Implement testHook_upnp_list().
790
     */
791
    public function testHook_upnp_list()
792
    {
793
        // Remove the following lines when you implement this test.
794
        $this->markTestIncomplete(
795
          'This test has not been implemented yet.'
796
        );
797
    }
798
799
    /**
800
     * @covers m_dom::get_problems
801
     * @todo   Implement testGet_problems().
802
     */
803
    public function testGet_problems()
804
    {
805
        // Remove the following lines when you implement this test.
806
        $this->markTestIncomplete(
807
          'This test has not been implemented yet.'
808
        );
809
    }
810
811
    /**
812
     * @covers m_dom::default_domain_type
813
     * @todo   Implement testDefault_domain_type().
814
     */
815
    public function testDefault_domain_type()
816
    {
817
        // Remove the following lines when you implement this test.
818
        $this->markTestIncomplete(
819
          'This test has not been implemented yet.'
820
        );
821
    }
822
}
823