-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
981 lines (895 loc) · 55.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" prefix="http://ogp.me/ns/website#">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Chase M. Marcum">
<meta name="copyright" content="2013-2014 Chase M. Marcum. All rights reserved.">
<meta content="Chase, Marcum, Chase Marcum, Developer, Web, Web Developer, Software, Engineer, Software Developer, Software Engineer, design, development, deployment, programing, Student, OIT, Oregon Tech, Oregon Institute of Technology, Resume, .NET Developer, ASP.NET, SQL Server, HTML, Java, JavaScript, C#, C++, Agile, Portland, OR, Oregon" name="keywords">
<meta name="description" content="Resume, Chase M. Marcum, currently completing my Senior Project, which is the final requirement I need to obtain my Bachelor of Science in Software Engineering Technology. I have gained knowledge of data structures, theory of computation, operating systems, compilers, programming languages, and computer architecture. I have developed an understanding of the software development cycles of design, development, deployment, and maintenance. I have also applied my abilities to identify, formulate, and solve software engineering problems, through the specification, design, implementation, and testing of software systems.">
<meta name="robots" content="all">
<meta http-equiv="Cache-Control" content="no-cache">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ------------------------------ Windows 8.1 tiles ------------------------------ -->
<meta name="application-name" content="Chase M. Marcum" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-square70x70logo" content="/images/tiny.png" />
<meta name="msapplication-square150x150logo" content="/images/square.png" />
<meta name="msapplication-wide310x150logo" content="/images/wide.png" />
<meta name="msapplication-square310x310logo" content="/images/large.png" />
<!-- ------------------------------ Twitter summary card with Large image ------------------------------ -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Chase_Marcum">
<meta name="twitter:title" content="Chase M. Marcum's Resume / CV Website">
<meta name="twitter:description" content="Resume, Chase M. Marcum, currently completing my Senior Project, which is the final requirement I need to obtain my Bachelor of Science in Software Engineering Technology. I have gained knowledge of data structures, theory of computation, operating systems, compilers, programming languages, and computer architecture. I have developed an understanding of the software development cycles of design, development, deployment, and maintenance. I have also applied my abilities to identify, formulate, and solve software engineering problems, through the specification, design, implementation, and testing of software systems.">
<meta name="twitter:creator" content="@Chase_Marcum">
<meta name="twitter:image:src" content="http://chasemarcum.net/images/chase-marcum-resume.png">
<meta name="twitter:domain" content="chasemarcum.net">
<!-- ------------------------------ Facebook Object Meta Tags ------------------------------ -->
<meta property="fb:app_id" content="312083512266020" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://chasemarcum.net/" />
<meta property="og:title" content="Chase M. Marcum's Resume / CV Website" />
<meta property="og:site_name" content="Chase M. Marcum's Resume / CV Website" />
<meta property="og:image" content="http://chasemarcum.net/images/chase-marcum-resume.png" />
<meta property="og:description" content="Resume, Chase M. Marcum, currently completing my Senior Project, which is the final requirement I need to obtain my Bachelor of Science in Software Engineering Technology. I have gained knowledge of data structures, theory of computation, operating systems, compilers, programming languages, and computer architecture. I have developed an understanding of the software development cycles of design, development, deployment, and maintenance. I have also applied my abilities to identify, formulate, and solve software engineering problems, through the specification, design, implementation, and testing of software systems." />
<!-- ------------------------------ Google+ Object Meta Tags ------------------------------ -->
<meta itemprop="Chase M. Marcum" content="Chase M. Marcum's Resume / CV Website" />
<meta itemprop="description" content="Resume, Chase M. Marcum, currently completing my Senior Project, which is the final requirement I need to obtain my Bachelor of Science in Software Engineering Technology. I have gained knowledge of data structures, theory of computation, operating systems, compilers, programming languages, and computer architecture. I have developed an understanding of the software development cycles of design, development, deployment, and maintenance. I have also applied my abilities to identify, formulate, and solve software engineering problems, through the specification, design, implementation, and testing of software systems." />
<meta itemprop="image" content="http://chasemarcum.net/images/chase-marcum-resume.png" />
<meta property="place:location:latitude" content="45.53" />
<meta property="place:location:longitude" content="-122.39" />
<meta property="business:contact_data:locality" content="Troutdale" />
<meta property="business:contact_data:postal_code" content="97060" />
<meta property="business:contact_data:country_name" content="United States" />
<meta property="business:contact_data:email" content="[email protected]" />
<meta property="business:contact_data:phone_number" content="5038885604" />
<meta property="business:contact_data:website" content="http://chasemarcum.net/" />
<title>Chase M. Marcum - Software Engineer | Web Developer Resume | CV website</title>
<!-- ------------------------------ Apple touch icons ------------------------------ -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-touch-icon-ipad-retina.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-touch-icon-iphone-retina.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/images/apple-touch-icon-iphone.png" />
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css" media="screen">
<link href="css/style.min.css" rel="stylesheet">
<link href="css/dark.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/shCoreDefault.css" />
<link href="http://fonts.googleapis.com/css?family=Droid+Sans:400,700" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<noscript>
<link href="css/noscript.min.css" rel="stylesheet">
</noscript>
</head>
<body>
<!-- ------------------------------ Navigation ------------------------------ -->
<a name="top"></a>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<nav role="navigation">
<button type="button" class="btn btn-navbar" data-toggle="collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand me-name" href="#top">Chase M. Marcum</a>
<div class="nav-collapse collapse pull-right navigation">
<ul class="nav" role="navigation">
<li hidden class="active first"><a href="#top">Chase M. Marcum</a></li>
<li><a href="#qualifications">Qualifications</a></li>
<li><a href="#skills">Tech Skills</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#professional">Experience</a></li>
<li><a href="#employment">Employment</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<!-- ------------------------------ Header ------------------------------ -->
<div class="hero">
<div class="container">
<header role="banner">
<a name="pagetop" class="division"></a>
<div class="hero-unit me-details">
<div class="row-fluid">
<div class="span2">
<div class="avatar">
<img width="130" height="151" src="/images/chasemmarcum.jpg" alt="Chase M. Marcum" />
</div>
</div>
<div class="span6">
<h1>Chase M. Marcum</h1>
<h2>Software Engineer | Web Developer</h2>
<ul class="social">
<li class="facebook"><a href="http://www.facebook.com/chasemarcum"></a></li>
<li class="twitter"><a href="http://twitter.com/chase_marcum"></a></li>
<li class="linked"><a href="http://www.linkedin.com/in/chasemarcum/"></a></li>
<li class="google"><a href="http://plus.google.com/u/0/108509499956305150641/about"></a></li>
<li class="download"><a href="support/Chase M Marcum - Resume.pdf"></a></li>
</ul>
</div>
<div class="span4">
<address role="contentinfo">
4008 SE Kibling Ct.<br>
Troutdale, OR 97060<br>
<abbr title="Phone">P:</abbr>
(503) 888-5604<br>
<abbr title="Email">E:</abbr>
<a href="mailto:[email protected]">[email protected]</a><br>
<abbr title="Website">W:</abbr>
<a href="http://chasemarcum.net/">chasemarcum.net</a><br>
</address>
</div>
</div>
</div>
</header>
</div>
</div>
<!-- ------------------------------ Qualifications ------------------------------ -->
<a name="qualifications" class="division"></a>
<div class="container">
<section role="region">
<div class="row">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Qualifications</h2></div>
</div>
</div>
<div class="span4">
<h3>Summary of Qualifications</h3>
</div>
<div class="span8">
<ul>
<li>Extensive education on <strong>software development</strong> through <strong>practical application</strong> and <strong>theory</strong>, encompassing <strong>design</strong>, <strong>development</strong>, <strong>deployment</strong>, and <strong>maintenance</strong> of a software product.</li>
<li>Proven <strong>ability</strong> to make <strong>informed decisions</strong>, <strong>adapt to situations</strong>, and <strong>seek understanding</strong>.</li>
<li>Ability to <strong>manage</strong> and <strong>prioritize</strong> multiple tasks/projects and deadlines simultaneously.</li>
<li>Over 14 years of successful experience in <strong>management</strong>, <strong>supervision</strong> and <strong>customer service</strong>.</li>
</ul>
</div>
</div>
</section>
<hr>
<!-- ------------------------------ Technical Skills ------------------------------ -->
<a name="skills" class="division"></a>
<section role="region">
<div class="row">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Technical Skills</h2></div>
</div>
<div class="row">
<div class="span8 offset2">
<div class="row">
<div class="span2">
<h4>ASP.NET MVC</h4>
</div>
<div class="span2">
<h4>WCF</h4>
</div>
<div class="span2">
<h4>HTML5 & CSS</h4>
</div>
<div class="span2">
<h4>Java</h4>
</div>
<div class="span2">
<h4>ASP.NET SPA</h4>
</div>
<div class="span2">
<h4>Web API</h4>
</div>
<div class="span2">
<h4>JavaScript</h4>
</div>
<div class="span2">
<h4>JUnit</h4>
</div>
<div class="span2">
<h4>ASP.NET</h4>
</div>
<div class="span2">
<h4>NUnit</h4>
</div>
<div class="span2">
<h4>jQuery</h4>
</div>
<div class="span2">
<h4>Source Control</h4>
</div>
<div class="span2">
<h4>C# Programming</h4>
</div>
<div class="span2">
<h4>Visual Studio</h4>
</div>
<div class="span2">
<h4>Bootstrap</h4>
</div>
<div class="span2">
<h4>MS Office Suite</h4>
</div>
<div class="span2">
<h4>C++ Programming</h4>
</div>
<div class="span2">
<h4>JSON</h4>
</div>
<div class="span2">
<h4>Knockout</h4>
</div>
<div class="span2">
<h4>Word</h4>
</div>
<div class="span2">
<h4>SQL Server</h4>
</div>
<div class="span2">
<h4>Async</h4>
</div>
<div class="span2">
<h4>AngularJS</h4>
</div>
<div class="span2">
<h4>Excel</h4>
</div>
<div class="span2">
<h4>LINQ</h4>
</div>
<div class="span2">
<h4>Windows</h4>
</div>
<div class="span2">
<h4>Win 8 App Dev</h4>
</div>
<div class="span2">
<h4>PowerPoint</h4>
</div>
<div class="span2">
<h4>Adobe Photoshop</h4>
</div>
<div class="span2">
<h4>Adobe Illustrator</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<hr>
<!-- ------------------------------ Education ------------------------------ -->
<a name="education" class="division"></a>
<section role="region">
<div class="row">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Education</h2></div>
</div>
</div>
<div class="span4">
<h3>Oregon Institute of Technology</h3>
<h5 style="color: #808080">2011 - present</h5>
</div>
<div class="span8">
<h4 style="color: #08C">
Bachelor of Science in Software Engineering Technology
</h4>
<p>GPA: 3.64</p>
<table>
<tbody>
<tr>
<td>Expected completion:</td>
<td>June 2015</td>
</tr>
</tbody>
</table>
<br />
<p>Currently at Oregon Tech I am working on completing my Senior Project by developing a Single Page Application (SPA) with role based security utilizing the core elements of ASP.NET, Web API, and AngularJS, which is the final requirement I need to obtain my Bachelor of Science in Software Engineering Technology. During the Junior Team Project in Software Process Management, Design, and Implementation I took on the Team Lead role, where we utilized the Agile and Scrum software development process to gather requirements, model, analyze, develop and integrate our n-tiered architecture product. In the project we developed a prototype, delivered a complete Pre Plan Documentation, and delivered a total of three iterations of our product with updated documentation.</p>
<p>I have gained knowledge of data structures, theory of computation, operating systems, compilers, programming languages, and computer architecture. I have developed an understanding of the software development cycles of design, development, deployment, and maintenance. I have also applied my abilities to identify, formulate, and solve software engineering problems, through the specification, design, implementation, and testing of software systems.
</p>
<div class="accordion" id="accordion1">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion1" href="#collapseOne">
<i class="icon-chevron-down"></i> Complete Courses:
</a>
</div>
<div id="collapseOne" class="accordion-body collapse">
<div class="accordion-inner">
<ul>
<li>Software Design/Implementation II (CST 336)</li>
<li>Senior Project Proposal (CST 334)</li>
<li>Compiler Methods (CST 320)</li>
<li>Engineering Economy (MGT 345)</li>
<li>Windows 8 Appl Development (CST 407)</li>
<li>Web Design and Development (CST 356)</li>
<li>Software Design/Implementation I (CST 326)</li>
<li>Operating Systems (CST 352)</li>
<li>Software Process Management (CST 316)</li>
<li>Software Design Patterns (CST 238)</li>
<li>Computer Assembly Language (CST 250)</li>
<li>UNIX (CST 240)</li>
<li>GUI Programming (CST 238)</li>
<li>Software Systems Testing (CST 236)</li>
<li>Introduction to Grammars (CST 229)</li>
<li>Concepts of Programming Languages (CST 223)</li>
<li>Data Structures (CST 211)</li>
<li>Introduction to Digital Logic (CST 162)</li>
<li>OOP with C++ (CST 136)</li>
<li>Computer Architecture (CST 131)</li>
<li>Computer Organization (CST 130)</li>
<li>C++ Programming (BUS 116)</li>
<li>Engineering Management (BUS 304)</li>
<li>Mathematical Statistics (MATH 465)</li>
<li>Discrete Math (MATH 327)</li>
<li>Vector Calculus I (MATH 254N)</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="span4">
<h3>Mt. Hood Community College</h3>
<h5 style="color: #808080">2011 - 2012</h5>
</div>
<div class="span8">
<h4 style="color: #08C">
Associate of Science in Computer Science
</h4>
<p>GPA: 3.96</p>
<table>
<tbody>
<tr>
<td>Honors:</td>
<td>Phi Theta Kappa Honor Society,</td>
</tr>
<tr>
<td></td>
<td>President's Honor Roll</td>
</tr>
</tbody>
</table>
<br />
<p>At Mt. Hood Community College I completed the pre-engineering program in Computer Science and earned an Associate of Science degree with honors by earning a 3.96 GPA, awarded being on the President’s Honor Roll during my entire enrollment, and being accepted into the Phi Theta Kappa Honor Society.</p>
<p>In earning my Associate of Science degree the skills I developed were:</p>
<ul>
<li>Applying advance mathematics, scientific physics theories, and engineering concepts.</li>
<li>Designing and conducting test, as well as analyzing and interpreting data.</li>
<li>Designing a system, component, or process to meet desired needs within realistic constraints.</li>
<li>Effectively working with multidisciplinary teams.</li>
<li>Identifying, formulating, and solving engineering problems.</li>
<li>Understanding professional and ethical responsibilities.</li>
</ul>
<div class="accordion" id="accordion2">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseTwo">
<i class="icon-chevron-down"></i> Completed courses:
</a>
</div>
<div id="collapseTwo" class="accordion-body collapse">
<div class="accordion-inner">
<ul>
<li>PL/SQL Developer OCA (CIS 227)</li>
<li>SQL (CIS 276)</li>
<li>Web Authoring: HTML5 and CSS3 (CIS 197HTM)</li>
<li>Problem Solving Methodologies (CIS 144)</li>
<li>Unix/Linux System Management (CIS 140U)</li>
<li>C++ Programming II (CST 126)</li>
<li>Desktop Database (CIS 125DB)</li>
<li>Intro to Computer Systems III (CST 105)</li>
<li>Intro to Computer Systems II (CST 103)</li>
<li>Intro to Computer Systems (CST 102)</li>
<li>General Physics with Calculus III (PH213)</li>
<li>General Physics with Calculus II (PH212)</li>
<li>General Physics with Calculus I (PH211)</li>
<li>Sequences and Series (MATH 251)</li>
<li>Integral Calculus (MATH 252)</li>
<li>Differential Calculus (MATH 251)</li>
<li>Trigonometry (MATH 112)</li>
<li>College Algebra (MATH 111)</li>
<li>Digital Art I (ART 225)</li>
<li>Painting I (ART 281)</li>
<li>Technical Report Writing (WR 227)</li>
<li>English Composition: Critical Thinking (WR 122)</li>
<li>English Composition (WR 121)</li>
<li>General Psychology I (PSY 201)</li>
<li>General Psychology II (PSY 202)</li>
<li>Fundamentals of Public Speaking (SP 111)</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<hr>
<!-- ------------------------------ Skills and Experience ------------------------------ -->
<a name="professional" class="division"></a>
<section role="region">
<div class="row">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Skills and Experience</h2></div>
</div>
</div>
<div class="span4">
<h3>SOFTWARE DEVELOPMENT</h3>
</div>
<div class="span8">
<ul>
<li><strong>Team Lead</strong> in Oregon Tech’s junior software development project, utilizing the <strong>Agile software development</strong> process to gather <strong>requirements</strong>, <strong>model</strong>, <strong>analyze</strong>, <strong>develop</strong> and <strong>integrate</strong> an <strong>n-tiered architecture</strong> product.</li>
<li>The ability to <strong>identify</strong>, <strong>formulate</strong>, and <strong>solve</strong> software engineering problems, through the <strong>specification</strong>, <strong>design</strong>, <strong>implementation</strong>, and <strong>testing</strong> of software systems.</li>
<li>Knowledge of <strong>data structures</strong>, <strong>theory of computation</strong>, <strong>operating systems</strong>, <strong>compilers</strong>, <strong>programming languages</strong>, and <strong>computer architecture</strong>.</li>
<li>Understanding of the <strong>software development life cycles (SDLC)</strong> of design, development, deployment, and maintenance.</li>
</ul>
</div>
</div>
<div class="row">
<div class="span4">
<h3>IT Services</h3>
</div>
<div class="span8">
<ul>
<li><strong>Ensured</strong> all company facilities/departments were up, running, and <strong>operational 365 days a year</strong>.</li>
<li>Primary IT <strong>support</strong> for seven medical clinic locations, business office, and billing department.</li>
<li><strong>Planned</strong>, <strong>organized</strong>, <strong>scheduled</strong>, and <strong>coordinated</strong> diverse IT projects and activities.</li>
<li>Preserved the <strong>integrity</strong> of the company's website by <strong>routine updates</strong> and <strong>revisions</strong>.</li>
<li><strong>Sustained</strong> and <strong>managed</strong> all company’s social media accounts.</li>
</ul>
</div>
</div>
<div class="row">
<div class="span4">
<h3>Management, Sales & Customer Service</h3>
</div>
<div class="span8">
<ul>
<li>Ensure overall excellence in <strong>operations</strong>, <strong>risk management</strong>, <strong>training</strong>, and <strong>compliance performance</strong>.</li>
<li>Scheduled staff and store resources to ensure <strong>appropriate coverage</strong> to <strong>meet company goals</strong>.</li>
<li>Continuously <strong>improved</strong> company's <strong>performance</strong>, <strong>operational excellence</strong> and associate proficiency.</li>
<li><strong>Provided positive</strong> and <strong>constructive feedback</strong> to help employees improve their skills.</li>
<li><strong>Led</strong> and <strong>trained</strong> customer service standards and <strong>achieved</strong> top sales results.</li>
<li><strong>Identified opportunities</strong> and referred to appropriate divisions within company.</li>
<li><strong>Developed</strong> new business with current and prospective customers.</li>
<li>Assisted in growing extensive sales, operations and product knowledge through ongoing <strong>training</strong>.</li>
<li><strong>Formulated</strong> business strategies and <strong>drove</strong> results by <strong>aligning</strong> store goals with company goals.</li>
</ul>
</div>
</div>
</section>
<hr>
<!-- ------------------------------ Employment History ------------------------------ -->
<a name="employment" class="division"></a>
<section role="region">
<div class="row">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Employment History</h2></div>
</div>
</div>
<div class="span4">
<h3>IT/Facilities Specialist</h3>
<h4>Northwest Urgent Care, LLC</h4>
<h5>2012 – 2013</h5>
</div>
<div class="span8">
<p>I was hired by Northwest Urgent Care to solely take over the <strong>Networking</strong> and <strong>IT</strong> responsibilities of the business that was previously managed by a third party company. With Northwest Urgent Care, I started to <strong>gain working knowledge</strong> and <strong>experience</strong> in the computer industry while attending school at Oregon Tech full-time. I was able to apply many of my previous work experiences to this position, allowing me to excel in my duties and responsibilities. With my customer service skills I was able to establish and maintain <strong>effective working relationships</strong> with co-workers and vendors. Through my <strong>management skills</strong> I was able to <strong>plan</strong>, <strong>organize</strong>, <strong>schedule</strong>, and <strong>coordinate</strong> diverse IT and building maintenance projects. This position also allowed me to expand the Networking and computer knowledge that I gained through school and work experience. Key accomplishments at Northwest Urgent Care:</p>
<ul>
<li>In August 2012 I effectively <strong>planned</strong> and <strong>implemented</strong> an upgrade of the clinics Electronic Medical Records system from Centricity CPS 8 to Centricity CPS 10. This implementation included installing a new <strong>server</strong> to become the new <strong>primary domain controller</strong>, repurposing the existing servers and setting one up as a new <strong>terminal server</strong>, transferring the <strong>SQL</strong> database to the new <strong>SQL server</strong>, and upgrading a majority of the clinic's workstations.</li>
<li>I was part of the project management team that <strong>designed</strong>, <strong>planned</strong>, and <strong>executed</strong> the building of the Urgent Care Express Clinic that opened in November 2012. This included installing a new terminal <strong>server</strong> to the domain, setting up new <strong>workstations</strong>, setting up a public wireless network, and creating a large digital sign for the front windows.</li>
<li><strong>Designed</strong>, <strong>built</strong>, and <strong>managed</strong> the website <a href="http://www.u-c-express.com">http://www.u-c-express.com</a> for our Urgent Care Express Clinic, this included the mobile website.</li>
<li><strong>Preserved</strong> and <strong>sustained</strong> the <strong>integrity</strong> of the company's websites and all company's social media accounts.</li>
<li>Currently in the process of <strong>planning</strong> and <strong>implementing</strong> a rebranding of all clinics to reflect our recent name change to Northwest Urgent Care. This includes obtaining bids and communicating with different vendors to change our existing building signage, replace our marketing material, and redesign the website and social media accounts.</li>
</ul>
</div>
</div>
<div class="row">
<div class="span4">
<h3>Assistant Banking Center Manager</h3>
<h4>Bank of America</h4>
<h5>2006 – 2010</h5>
</div>
<div class="span8">
<p>I was recruited to Bank of America to become the Assistant Banking Center Manager for the highest volume banking center within the Portland Metro Market, Eastport Plaza Banking Center. I came to Bank of America to learn, grow and experience the <strong>operations</strong> of banking, while also <strong>improving</strong> and <strong>utilizing</strong> my previous <strong>management skills</strong> and <strong>experience</strong>. Through a partnership with my Market Executive Manager, we determined the next natural step for my development was to step into the Personal Banker role to further my skills in sales, while also assisting other banking centers in <strong>operations</strong>. In the transition period with Bank of America I have had great experience in assisting other banking centers, while also <strong>building relationships</strong> and <strong>networking</strong> with other associates of our market. My additional accomplishments within the company were as follows:</p>
<ul>
<li>Within my first four months with Bank of America I was able to bring the banking center from a previous operational audit score of 6 out of 10 to an <strong>improved</strong> score of 8. Through <strong>managing</strong> and <strong>coaching</strong>, I was able to <strong>improve</strong> tellers <strong>achieving</strong> their referral <strong>goals</strong> from 43% to 100% of tellers meeting or exceeding their referral goals. </li>
<li>For the first quarter of 2007, Eastport Plaza Banking Center was at 87% of their goal for checking account production. Upon completing the fourth quarter of 2007 the banking center was at <strong>109% of goal</strong> with an <strong>increase in performance</strong> in all other sales areas by 20%. This placed Eastport Plaza for performance to goals within the <strong>top 3</strong> banking centers in the Portland Metro Market.</li>
</ul>
</div>
</div>
<div class="row">
<div class="span4">
<h3>Small Business Specialist</h3>
<h4>US Bank</h4>
<h5>2005 – 2006</h5>
</div>
<div class="span8">
<p>Within my first year with US Bank I initially stepped into a Personal Banker role with the intention to learn banking sales and <strong>operations</strong>. As a Personal Banker I performed as a <strong>top new banker</strong> within the region. I was quickly <strong>identified</strong> as a management candidate and was introduced into the "Emerging Leaders" program due to my past <strong>management experience</strong>, <strong>sales experience</strong> and <strong>my performance</strong> as a personal banker. US Bank then created a pilot Small Business Specialist position and it was my next natural step for positive <strong>growth</strong> within the company. As a Small Business Specialist, I went through <strong>extensive training</strong> and job shadowing. The Small Business Specialist position gave me a great opportunity to build small business sales. US Bank is now expanding the role within the company. My additional accomplishments within the company were as follows:</p>
<ul>
<li>In 2006 through personal bookings and referrals to my Business Banking Officer I <strong>produced 1.4 million dollars</strong> in new small business loans for third quarter and <strong>1.2 million dollars</strong> in fourth quarter.</li>
<li>Beaverton Main Branch was recognized in the region as one of the <strong>top branches</strong> for their small business <strong>growth</strong> in 2006, ranked 3 out of 77.</li>
</ul>
</div>
</div>
<div class="row">
<div class="span4">
<h3>Operations Manager</h3>
<h4>Old Navy</h4>
<h5>1997 – 2005</h5>
</div>
<div class="span8">
<p>My <strong>experience</strong> encompassed <strong>multiple</strong> store locations and various <strong>management</strong> titles with my role as a manager <strong>continually grew</strong> in size and scope. They <strong>encompassed</strong> expanding dollar volumes, <strong>complex training</strong>, and <strong>development</strong> of various levels of staff. In <strong>addition</strong> to my regular duties I had taken on district positions that include District "StaffWorks" Program Expert, District Operational Audit team member, and assisted as a store opener in various locations throughout the region. </p>
</div>
</div>
</section>
<hr>
<!-- ------------------------------ Portfolio ------------------------------ -->
<a name="portfolio" class="division"></a>
<section role="region">
<div class="row">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Portfolio</h2></div>
</div>
</div>
<!-- ------------- N-Tiered ASP.NET MVC, ASP.NET Web API, and Entity Framework application ------------- -->
<div class="span4">
<h3>N-Tiered ASP.NET MVC, ASP.NET Web API, and Entity Framework application</h3>
</div>
<div class="span8">
<div class="row-fluid">
<ul class="thumbnails thumbnails-portfolio">
<li class="span6">
<a href="" class="thumbnail">
<img src="/images/Junior Project/AIM_Admin_Admin_Dashboard_Thumb.png" width="421" height="315" alt="portfolio">
<div class="hover"></div>
<div class="info">
<h5>N-Tiered ASP.NET MVC, ASP.NET Web API, and Entity Framework application</h5>
<p>2013 - 2014</p>
</div>
</a>
<div class="page">
<img src="/images/Junior Project/AIM_Admin_Admin_Dashboard.png" width="1244" height="932" alt="portfolio">
</div>
</li>
<li class="span6">
<p>I took on the role of Team Lead in Oregon Tech’s three term Junior Team Project in Software Process Management, Design, and Implementation, where we utilized the Agile and Scrum software development process to gather requirements, model, analyze, develop and integrate our n-tiered architecture product. In the project we developed a prototype, delivered a complete Pre Plan Documentation, and delivered a total of three iterations of our product with updated documentation.</p>
</li>
</ul>
<p>Our team was given the scenario that a company selected us to create an automated job application system. During the Pre Planning process we gathered requirements, modeled, analyzed, and created a Project Notebook; some of the documents included the Project Plan, Requirements, Domain Model, Storyboards, Architecture Plan, and QA Plan. Throughout the project our Project Notebook was updated as needed, including weekly Status Reports.</p>
<p>Our first Iteration we developed the database schema in SQL, deployed the database into Azure SQL, developed a WCF Service, developed an ASP.NET MVC administrative website with the functionality to create/edit/delete users and job objects, and developed the UI for the administrative website. We established a Git repository for our source control, used Google Drive to collaborate on documents, and used Skype to communicate outside of our in person meetings.</p>
<p>In Iteration 2 we developed an ASP.NET MVC client application website with the UI and functionality to select a region at the start of the application, a view to display open jobs by region and their detail views, an application view, a separate WCF Service for the client website, and Unit Tests for services and controllers. Continued to utilize Git, Google Drive, and Skype for group collaboration.</p>
<p>In our final Integration 3 we had to redesign and recreate our Services. In the redesign we developed ASP.NET Web API Services to replace the initial WCF Services, developed a JavaScript testing tool for the service, then deployed and published the services in Azure Cloud Services and Azure Storage. We completed the functionality for the client application website, implemented user login permissions for the administrative site, added additional features to the administrative website, then deployed and published both websites in Azure Web.</p>
<h5><a href="https://github.com/ChaseMarcum/N-Tiered-ASP.NET-MVC--ASP.NET-Web-API--and-Entity-Framework-application">Repository: github.com/ChaseMarcum/N-Tiered-ASP.NET-MVC--ASP.NET-Web-API--and-Entity-Framework-application</a></h5>
<p>Utilized: <strong>ASP.NET MVC</strong>, <strong>ASP.NET Web API</strong>, <strong>WCF</strong>, <strong>C#</strong>, <strong>Entity Framework</strong>, <strong>SQL</strong>, <strong>LINQ</strong>, <strong>HTML</strong>, <strong>CSS</strong>, <strong>JavaScript</strong>, <strong>JQuery</strong>, <strong>JSON</strong>, <strong>Bootstrap</strong>, <strong>NUnit</strong>, <strong>Git</strong>, <strong>Azure SQL</strong>, <strong>Azure Cloud Services</strong>, <strong>Azure Storage</strong>, <strong>Azure Web Sites</strong>, <strong>SQL Server</strong>, <strong>Visual Studio 2013</strong>, <strong>Google Drive</strong>, <strong>Google Docs</strong>, <strong>Skype</strong>, and <strong>Word</strong>.</p>
</div>
</div>
<hr>
<!-- ------------------------------ chasemarcum.net ------------------------------ -->
<div class="span4">
<h3>This Website chasemarcum.net</h3>
</div>
<div class="span8">
<div class="row-fluid">
<ul class="thumbnails thumbnails-portfolio">
<li class="span6">
<a href="" class="thumbnail">
<img src="/images/chasemarcumnet_thumb.png" width="421" height="237" alt="portfolio">
<div class="hover"></div>
<div class="info">
<h5>chasemarcum.net</h5>
<p>2014</p>
</div>
</a>
<div class="page">
<img src="/images/chasemarcumnet.png" width="1920" height="1080" alt="portfolio">
</div>
</li>
<li class="span6">
<p>While taking my Web Design and Development course I wanted to explore and learn additional skills in Web Development. I took those skills and utilized additional resources to learn how to design, plan, develop, and deploy my personal website. Since that course I have continually worked on developing the site by adding new features and content.</p>
<p>The website is a One Page Responsive design utilizing HTML, CSS, JavaScript, JQuery, and Bootstrap. It is designed to complement my resume by having a similar clean look and style, to respond to the size of the viewing device to maintain a clean look on desktop, tablet, and mobile devices, and a One Page design for quick navigation.</p>
<ul>
<li>Responsive One Page Design.</li>
</ul>
</li>
</ul>
<h5><a href="http://chasemarcum.net">Link: chasemarcum.net</a></h5>
<h5><a href="https://github.com/ChaseMarcum/chasemarcum.net">Repository: github.com/ChaseMarcum/chasemarcum.net</a></h5>
<p>Utilized: <strong>CSS</strong>, <strong>JavaScript</strong>, <strong>JQuery</strong>, <strong>Bootstrap</strong>, <strong>SyntaxHighlighter</strong>, <strong>WebMatrix</strong>, and <strong>Sublime</strong>.</p>
</div>
</div>
<hr>
<!-- ------------------------------ Business Economics Calculator Website ------------------------------ -->
<div class="span4">
<h3>Business Economics Calculator Website</h3>
</div>
<div class="span8">
<div class="row-fluid">
<ul class="thumbnails thumbnails-portfolio">
<li class="span6">
<a href="" class="thumbnail">
<img src="/images/Business Economy/Earnings_Per_Share_thumb.png" width="421" height="237" alt="portfolio">
<div class="hover"></div>
<div class="info">
<h5>Business Economics Calculator Website</h5>
<p>2014</p>
</div>
</a>
<div class="page">
<img src="/images/Business Economy/Earnings_Per_Share.png" width="1444" height="822" alt="portfolio">
</div>
</li>
<li class="span6">
<p>My partner and I decided to design, develop, and deploy a Business Economic Calculator website in lieu of writing a final paper to expand and practice our software / web development skills.</p>
<p>We implemented 29 business economic formulas. When implementing the economic equations that required two variables from the user or three variables from the user we designed and implemented a controller and view for two variable equations and three variable equations that displays and calculates the correct formula based on the model selected.</p>
</li>
</ul>
<p>We utilized JavaScript to perform the calculations and produce the result for the user once they entered the required information and clicked the calculate button. The design for the Time Value Money formulas also are calculated using JavaScript with the logic to perform the correct calculation based on the missing variable on the form.</p>
<ul>
<li>29 Business Economic formulas descriptions and calculator.</li>
<li>Time Value Money calculator that can calculate Future Value, Present Value, Rate, Number of Periods, or Payment.</li>
<li>Simple Balance Sheet form.</li>
<li>Simple Income Statement form.</li>
<li>Expanding Sidebar Menu.</li>
</ul>
<h5><a href="http://businesseconomy.azurewebsites.net/">Link: businesseconomy.azurewebsites.net</a></h5>
<h5><a href="https://github.com/ChaseMarcum/TVM">Repository: github.com/ChaseMarcum/TVM</a></h5>
<p>Utilized: <strong>ASP.NET MVC</strong>, <strong>C#</strong>, <strong>HTML</strong>, <strong>CSS</strong>, <strong>JavaScript</strong>, <strong>JQuery</strong>, <strong>JQuery UI</strong>, <strong>Bootstrap</strong>, and <strong>Visual Studio 2013</strong>.</p>
</div>
</div>
<hr>
<!-- ------------------------------ Music Library ASP.NET MVC and SQL Database Prototype ------------------------------ -->
<div class="span4">
<h3>Music Library ASP.NET MVC and SQL Database Prototype </h3>
</div>
<div class="span8">
<div class="row-fluid">
<ul class="thumbnails thumbnails-portfolio">
<li class="span6">
<a href="" class="thumbnail">
<img src="/images/Music Library/my_music_by_album_thumb.png" width="421" height="298" alt="portfolio">
<div class="hover"></div>
<div class="info">
<h5>Music Library ASP.NET MVC and SQL Database Prototype </h5>
<p>2014</p>
</div>
</a>
<div class="page">
<img src="/images/Music Library/my_music_by_album.png" width="1455" height="1032" alt="portfolio">
</div>
</li>
<li class="span6">
<p>In the initial phase of Oregon Tech’s three term Junior Team Project in Software Process Management, Design, and Implementation, where we utilized the Agile and Scrum software development process to gather requirements, model, analyze, develop and integrate our n-tiered architecture product, we developed a prototype project. Our prototype project was to demonstrate our ability to work as a team in the design and implementation of an ASP.NET MVC web application and a SQL database.</p>
<p>To demonstrate our skill and knowledge we developed and deployed an ASP.NET MVC Web application that stores a music library and allows you to add and remove songs to a playlist. As a team we collaborated in developing and populating some test data by writing the SQL script in Google drive then initially running the script and creating the database in MySQL. Our initial database in MySQL was only available locally, to insure consistent data in our data we migrated and published our database to Windows Azure SQL.</p>
</li>
</ul>
<p>We designed a UI concept to display the music by album, artist, song, genre, album detail, and playlist and I executed the design by using HTML, Razor, Bootstrap, and CSS. The ability to add a song to the playlist is through the album detail view or song list view by clicking the add button. The ability to remove a song from the playlist is in the playlist view by clicking the remove button.</p>
<h5><a href="http://musiclibraryproject.azurewebsites.net/">Link: musiclibraryproject.azurewebsites.net</a></h5>
<h5><a href="https://github.com/ChaseMarcum/CST316-Project">Repository: github.com/ChaseMarcum/CST316-Project</a></h5>
<p>Utilized: <strong>ASP.NET MVC</strong>, <strong>C#</strong>, <strong>Entity Framework</strong>, <strong>SQL</strong>, <strong>MySQL</strong>, <strong>LINQ</strong>, <strong>HTML</strong>, <strong>CSS</strong>, <strong>JavaScript</strong>, <strong>Bootstrap</strong>, <strong>Git</strong>, <strong>SQL Server</strong>, <strong>Azure SQL</strong>, <strong>Azure Web</strong>, and <strong>Visual Studio 2013</strong>.</p>
</div>
</div>
<hr>
<!-- ------------------------------ Social Photo Collage ------------------------------ -->
<div class="span4">
<h3>Social Photo Collage</h3>
</div>
<div class="span8">
<div class="row-fluid">
<ul class="thumbnails thumbnails-portfolio">
<li class="span6">
<a href="" class="thumbnail">
<img src="/images/SocialPhotoCollage_thumb_421x237.jpg" width="421" height="237" alt="portfolio">
<div class="hover"></div>
<div class="info">
<h5>Social Photo Collage</h5>
<p>July 2013 - August 2013</p>
</div>
</a>
<div class="page">
<img src="/images/SocialPhotoCollage.png" width="1920" height="1080" alt="portfolio">
</div>
</li>
<li class="span6">
<p>During an 8 week term at Oregon Tech I designed, developed, and published a HTML5 and JavaScript Windows 8 app to the Windows Store. This was a great accomplishment for me considering I was very green with programing in JavaScript and had to learn the syntax during the process. I am looking forward to continued work improving and expanding the features of this application.</p>
<p>Social Photo Collage accesses your My Pictures photo library and sorts the photos by their date created and displays them in sections organized by month. You can select individual photos or select to open the month sections to view all photos in that folder. The program allows you the ability to edit your photos by cropping or rotating them and saving your changes. In future builds I plan to add additional access to photos in social media and then allow you to create a collage of your photos.</p>
</li>
</ul>
<h5><a href="http://apps.microsoft.com/windows/en-us/app/social-photo-collage/3c1cc686-5037-451d-80d7-ce232bc374a4">Link: Social Photo Collage</a></h5>
<p></p>
<ul>
<li>View photos from My Photos folder on the Users computer.</li>
<li>Organize and view photos by date created.</li>
<li>Edit photos by cropping and rotating photos.</li>
</ul>
<p>Utilized: <strong>HTML</strong>, <strong>CSS</strong>, <strong>JavaScript</strong>, <strong>Windows 8 Application</strong>, <strong>Visual Studio 2013</strong>, and <strong>Blend</strong>.</p>
<h5>JavaScript Code Example: populateTemplate.js</h5>
<pre class="brush: js;" class="span12">(function () {
"use strict";
var templates = Windows.UI.Notifications.TileTemplateType;
var tileUpdateManager = Windows.UI.Notifications.TileUpdateManager;
function buildWideTile(thumbnailFilePaths) {
var template = templates.tileWideImageCollection;
var xml = tileUpdateManager.getTemplateContent(template);
var images = xml.getElementsByTagName("image");
thumbnailFilePaths.forEach(function (thumbnailFilePath, index) {
images[index].setAttribute("src", thumbnailFilePath);
});
return xml;
}
function buildSquareTile(thumbnailFilePath) {
var template = templates.tileSquareImage;
var xml = tileUpdateManager.getTemplateContent(template);
var imageTags = xml.getElementsByTagName("image");
imageTags[0].setAttribute("src", thumbnailFilePath);
return xml;
}
WinJS.Namespace.define("SocialPhotoCollage.Tiles.populateTemplate", {
wideTile: buildWideTile,
squareTile: buildSquareTile
});
})();
</pre>
<br>
</div>
</div>
<!-- ------------------------------ Integration and Unit tests ------------------------------ -->
<div class="span4">
<h3>Integration and Unit tests</h3>
</div>
<div class="span8">
<div class="row-fluid">
<ul class="thumbnails thumbnails-portfolio">
<li class="span6">
<a href="" class="thumbnail">
<img src="/images/JUnit_Testing_Code_thumb.png" width="421" height="237" alt="portfolio">
<div class="hover"></div>
<div class="info">
<h5>Integration and Unit tests</h5>
<p>2013</p>
</div>
</a>
<div class="page">
<img src="/images/JUnitTestingCode.png" width="1920" height="1080" alt="portfolio">
</div>
</li>
<li class="span6">
<p>Developed Integration and Unit tests in Java.</p>
<p>In my Software System Testing course I was provided code that someone else has written (poorly) to identify and fix errors through testing. I started by familiarizing myself with the application and interfaces, then wrote unit tests utilizing fixtures, doubles, mocks, and stubs to isolate testing in JUnit. When errors were identified through the unit tests, I made the needed adjustments to the code.</p>
<p>Once the unit tests were complete I wrote integration test to test the flow and interconnections between the modules. When errors were identified through the integration tests, I made the needed adjustments to the code.</p>
</li>
</ul>
<p>Utilized: <strong>Java</strong>, <strong>JUnit</strong>, <strong>Mockito</strong>, and <strong>Eclipse</strong>.</p>
<h5><a href="https://github.com/ChaseMarcum/JUnitTestingCode">Repository: github.com/ChaseMarcum/JUnitTestingCode</a></h5>
<h5>Testing Code Example:</h5>
<pre class="brush: java;" class="span12">public class LibraryHttpServiceTest {
private LibraryHttpService sut;
private IWebClient mockClient;
private IBookParser mockBookParser;
private ILibraryParser mockLibraryParser;
@Before
public void setup() throws ConnectionException, ParseException {
mockClient = Mockito.mock(IWebClient.class);
mockLibraryParser = Mockito.mock(ILibraryParser.class);
mockBookParser = Mockito.mock(IBookParser.class);
sut = new LibraryHttpService(mockClient);
sut.setBookParser(mockBookParser);
sut.setLibraryParser(mockLibraryParser);
}
@Test
public void testSetBookParser_IllegalArgumentException() throws IllegalArgumentException{
sut.setBookParser(null);
}
@Test
public void testSetLibraryParser_IllegalArgumentException() throws IllegalArgumentException{
sut.setLibraryParser(null);
}
@Test
public void testClientSetter_WithGetter() throws ConnectionException
{
class LibraryHttpServiceExtra extends LibraryHttpService
{
public LibraryHttpServiceExtra(IWebClient client) throws ConnectionException { mockClient = client; }
}
LibraryHttpServiceExtra newLibService = new LibraryHttpServiceExtra(mockClient);
IWebClient anotherClient = Mockito.mock(IWebClient.class);
newLibService.setWebClient(anotherClient);
}
@Test
public void testGetLibrary() throws InvalidRequestException, ConnectionException, ParseException {
ILibrary mockLibrary = Mockito.mock(ILibrary.class);
Mockito.when(mockClient.query("http://www.fake.com/library/123")).thenReturn("goodjson");
Mockito.when(mockLibraryParser.parseLibrary("goodjson")).thenReturn(mockLibrary);
ILibrary library = sut.getLibrary("123");
Assert.assertEquals(mockLibrary, library);
}
</pre>
</div>
</div>
</div>
</section>
<hr>
<!-- ------------------------------ Contact me ------------------------------ -->
<a name="contact" class="division"></a>
<section role="region">
<div class="row contact">
<div class="span12">
<div class="progress">
<div class="bar bg-color" style="width: 100%;"><h2 class="headingBar">Contact me</h2></div>
</div>
</div>
<div class="span4">
<h3>It would be great to hear from you</h3>
</div>
<div class="span8">
<div class="row contact">
<div class="span4">
<h3 style="color: #08C">Chase M. Marcum</h3>
<address role="contentinfo">
4008 SE Kibling Ct.<br>
Troutdale, OR 97060<br>
<abbr title="Phone">P:</abbr>
(503) 888-5604<br>
<abbr title="Email">E:</abbr>
<a href="mailto:[email protected]">[email protected]</a><br>
<abbr title="Website">W:</abbr>
<a href="http://chasemarcum.net/">chasemarcum.net</a><br>
</address>
</div>
<div class="span4">
<div id="form-messages"></div>
<form class="form" id="ajax-contact-form" action="mailer.php">
<input type="text" name="name" class="span4" placeholder="Name" required="">
<input type="email" class="span4" name="email" placeholder="Email" required="">
<textarea name="message" placeholder="Message" rows="8" class="span4"></textarea>
<button type="submit" class="btn btn-submit bg-color">SUBMIT</button><div class="loading"></div>
</form>
<div class="results"></div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- ------------------------------ Footer ------------------------------ -->
<footer>
<div class="container">
<p>© 2014 Chase Marcum</p>
</div>
</footer>
<!-- ------------------------------ Scripts ------------------------------ -->
<a href="#pagetop" class="go-to-top">Top</a>
<script src="js/jquery.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.min.js"></script>
<script src="js/app.js"></script>
<script type="text/javascript" src="js/shCore.js"></script>
<script type="text/javascript" src="js/shBrushJava.js"></script>
<script type="text/javascript" src="js/shBrushJavaFX.js"></script>
<script type="text/javascript" src="js/shBrushJScript.js"></script>
<script type="text/javascript" src="js/shBrushXml.js"></script>
<script type="text/javascript">SyntaxHighlighter.all();</script>
<script>
$(function () {
$('download').popover('top');
});
$('.accordion').on('show hide', function (n) {
$(n.target).siblings('.accordion-heading').find('.accordion-toggle i').toggleClass('icon-chevron-up icon-chevron-down');
});
</script>
</body>
</html>