-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (94 loc) · 4.35 KB
/
index.html
File metadata and controls
104 lines (94 loc) · 4.35 KB
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
---
title: CUTE
layout: default
active: home
---
<div id="scrollhint" style="position: fixed; left: 40px; bottom: 0px; z-index: 999;">
<p style="font-size: 36pt; color: #CCC;"><a href=""><i class="fa fa-angle-double-down"></i></a></p>
</div>
<div class="jumbotron padded">
<img class="center-block" style="width: 505px; max-width: 90%; margin-bottom: 44px;" src="{{ site.logo }}" />
<p style="margin: 1em 0 1em 0;" class="lead text-center"><span style="color:red;">C++</span> Unit Testing Easier</p>
<p class="text-center">
<a class="btn btn-lg btn-success" role="button" href="/installation">Get it now!</a>
</p>
<div class="latest-news">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<a href="{{site.posts.first.url}}">
Latest News: {{ site.posts.first.title }} – {{ site.posts.first.date | date_to_string }}
</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4">
<img src="img/icon-header.png" style="height: 140px;">
<h2>CUTE Framework</h2>
<p>Make use of the best
<span style="color:red;">C++</span> unit testing framework. Besides being very easy to use, the CUTE framework leverages modern
<span style="color:red;">C++</span> libraries and features. To use CUTE as a standalone framework, follow the link to the GitHub repository.</p>
<p>
<a class="btn btn-default" href="https://github.com/PeterSommerlad/CUTE" target="_blank" role="button">Learn More »</a>
</p>
</div>
<div class="col-lg-4">
<img src="img/icon-ide.png" style="height: 140px;">
<h2>CUTE Eclipse Plug-in</h2>
<p>Harness the power of the CUTE framework integrated into an easy to use Eclipse plug-in. Profit from features like:
<ul>
<li>Wizards creating test frames</li>
<li>Test navigator with green/red bar</li>
<li>Diff-viewer for failing tests</li>
<li>Gcov coverage visualization</li>
</ul>
</p>
<p>
<a class="btn btn-default" href="/installation" role="button">Install Now »</a>
</p>
</div>
<div class="col-lg-4">
<img src="img/icon-cevelop.png" style="height: 140px;">
<h2>Cevelop</h2>
<p>The CUTE Eclipse Plug-in is one of the many helpful plug-ins of Cevelop, your number one IDE for safe
<span style="color:red;">C++</span> development. Go have a look at what Cevelop can offer you on the official Cevelop website.</p>
<p>
<a class="btn btn-default" href="https://www.cevelop.com/" target="_blank" role="button">View Details »</a>
</p>
</div>
</div>
</div>
<div class="container">
<div class="page-header">
<h1></h1>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">CUTE: Green Bar for <span style="color:red;">C++</span></h2>
<p class="lead">CUTE, short for <span style="color:red;">C++</span> Unit Testing Easier, is an easy to use <span style="color:red;">C++</span> unit testing framework that leverages modern <span style="color:red;">C++</span> libraries and features. CUTE is orthogonal, easily extendable and much simpler than other <span style="color:red;">C++</span> unit testing approaches like CPPUnit. For example, CUTE does not require that you write a derived class for each <span style="color:red;">C++</span> class you want to unit test.</p>
<p>The CUTE Eclipse Plug-in supports easy development and management of CUTE unit tests for your software. Features like red/green-bar result visualization, automatic test registration and code coverage alleviate every-day tasks of a software developer. The plug-in also encourages test driven development through various code generation mechanisms, reducing development time significantly.</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="img/cute-diff-view.png">
</div>
</div>
</div>
<script>
$( document ).ready(function() {
$(window).scroll( function() {
if($(document).scrollTop() == 0 ) {
$('#scrollhint').show();
} else {
$('#scrollhint').hide();
}
});
$('#scrollhint').click(function(){
$('html, body').animate({scrollTop: window.innerHeight}, 400);
return false;
});
});
</script>