Welcome! This page is using CodeRay 1.1.2.
We currently have
3049 rays
in the database.
You can add a
New Ray
or browse the posted rays by pages.
test |
5 lines
of
Ruby
|
112 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
def test_reset
@igra.stevilo_strelov = 12
@igra.reset
assert_equal @igra.stevilo_strelov, 0
end |
|
test |
4 lines
of
Ruby
|
90 Bytes |
Show |
Edit |
Expand |
1
2
3
4 |
def strel
razdalja_strela = izracun_razdalje_strela
@stevilo_strelov += 1
end |
|
test |
7 lines
of
Ruby
|
174 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7 |
def test_izvedba_strela
zacetek = @igra.stevilo_strelov
@igra.hitrost = 1
@igra.kot = 1
@igra.strel
assert_equal @igra.stevilo_strelov, zacetek+1
end |
|
test |
39 lines
of
C
|
782 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10 |
class TopovskiNapad
SVETLOBNA_HITROST = 299792458
attr_accessor :razdalja_do_tarce
attr_accessor :hitrost
attr_accessor :kot
def initialize
@razdalja_do_tarce = Random.rand(... |
|
test |
6 lines
of
Ruby
|
211 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
def test_izracunana_razdalja
@igra.hitrost = 1
@igra.kot = 1
@igra.razdalja_do_tarce = 1
assert_equal ((1 ** 2 * (Math.sin(2 * 1 * Math::PI / 180) ))/10), @igra.izracun_razdalje... |
|
test |
35 lines
of
Ruby
|
645 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10 |
class TopovskiNapad
SVETLOBNA_HITROST = 299792458
attr_accessor :razdalja_do_tarce
attr_accessor :hitrost
attr_accessor :kot
def initialize
@razdalja_do_tarce = Random.rand(... |
|
test |
32 lines
of
Ruby
|
891 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
def test_vnos_kota_prebran
@igra.instance_eval do
def preberi_vnos
return "3"
end |
|
test |
23 lines
of
Ruby
|
414 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9
10
11 |
class TopovskiNapad
attr_accessor :razdalja_do_tarce
attr_accessor :hitrost
def initialize
@razdalja_do_tarce = Random.rand(10...1000)
end
def vnesi_hitrost
hitrost = ... |
|
test |
31 lines
of
Ruby
|
911 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5 |
def test_vnos_hitrosti_prebran
@igra.instance_eval do
def preberi_vnos
return "22"
end |
|
test |
9 lines
of
Ruby
|
141 Bytes |
Show |
Edit |
Expand |
1
2
3
4
5
6
7
8
9 |
class TopovskiNapad
attr_accessor :razdalja_do_tarce
def initialize
@razdalja_do_tarce = Random.rand(10...1000)
end
end
|
|